Auto naming Worksheets

W

Will Cendrowski

I am trying to rename worksheets and used a macro found in one of the threads:

Sub name_um()
For Each ws In Worksheets
ws.Name = ws.Range("A1").Value
Next
End Sub

It works...but A1 on the numerous worksheets get their value from cells the
first worksheet. Some of the cells in the first worksheet have no value.

I am getting an when the macro comes to a worksheet that does not have a
value in A1. How can I get the program to skip that worksheet?

Please be easy in your response, as I am new to Macros.
 
D

Dave Peterson

And some values may not be legal names for worksheets, too.

Sub name_um()
dim ws as worksheet
For Each ws In Worksheets
on error resume next
ws.Name = ws.Range("A1").Value
if err.number <> 0 then
err.clear
beep
'or maybe
msgbox ws.name & " was not renamed"
end if
on error goto 0
Next ws
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top