SHEET NAMING

  • Thread starter Thread starter rnkshan
  • Start date Start date
R

rnkshan

HOW DO I NAME VARIOUS SHEETS IN MY WORK BOOK WITH DATES OF A MONTH
e.g. FEB 9, FEB 10 ETC
IN ONE SHORT
 
try this

in Sheet1 , Range A1: A10 type FEB 9, FEB 10 and so on

run this macro

Sub sheet_name()
For a = 1 To Sheets.Count
Sheets(a).Name = Cells(a, 1).Value
Next
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

Similar Threads

excel sheet name 2
sort a column by date- by month not year 5
Excel Help with dates 2
Remove workbook reference but keep worksheet references 2
If Condition 14
Multiple conditions 3
find data 5
Determine current worksheet 6

Back
Top