Testing 600+ sheetnames

DouglasWicker

New Member
Joined
Aug 8, 2017
Messages
38
Morning all

I have a workbook of 600+ sheets all named by the date the sheet refers to (in the form 1Jan17).

I am trying to use vba to change the name of the sheets to the dates respective weekday. i.e I need all the dates that were a Monday to have the sheet name "Monday" and not "4Jan16".

I have a list of dates that were mondays, tuesdays etc.

Trying to assign the all the dates in string format to a variable, and then run code to check whether the sheet is called this, if so, change sheetname, if not, test next sheet.

I thought of this code as a guess but not working (this code is just for mondays).


Sub convertabstodates()


Dim Mdate As String
Dim rev As String


Mdate = "4Jan16" & "," & "11Jan16" & "," & "18Jan16" & "," & "25Jan16" & "," & "1Feb16" & "," & "8Feb16" & "," & "15Feb16" & "," & "22Feb16" & "," & "29Feb16" & "," & "7Mar16" & "," & "14Mar16" & "," & "21Mar16" & "," & "28Mar16" & "," & "4Apr16" & "," & "11Apr16" & "," & "18Apr16" & "," & "25Apr16" & "," & "2May16" & "," & "9May16" & "," & "16May16" & "," & "23May16" & "," & "30May16" & "," & "6Jun16" & "," & "13Jun16" & "," & "20Jun16" & "," & "27Jun16" & "," & "4Jul16" & "," & "11Jul16" & "," & "18Jul16" & "," & "25Jul16" & "," & "1Aug16" & "," & "8Aug16" & "," & "15Aug16" & "," & "22Aug16" & "," & "29Aug16" & "," & "5Sep16" & "," & "12Sep16" & "," & "19Sep16" & "," & "26Sep16" & "," & "3Oct16" & "," & "10Oct16" & "," & "17Oct16" & "," & "24Oct16" & "," & "31Oct16" & "," & "7Nov16" & "," & "14Nov16" & "," & "21Nov16" & "," & "28Nov16" & "," & "5Dec16" & "," & "12Dec16" & "," & "19Dec16" & "," & "26Dec16"


If InStr(Mdate, ActiveSheet.Mame) <> 0 Then
ActiveSheet.Name = "Monday"


End If


End Sub



All help appreciated
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
There is probably a more compact way to write it, but here is one option that you can try on a copy of your workbook that does, what I think, you want.

Code:
Sub convertabstodates()
Dim ws As Worksheet, mo As Long, tu As Long, we As Long, th As Long, fr As Long, sa As Long, su As Long
For Each ws In ActiveWorkbook.Worksheets
    Select Case Application.Text(ws.Name, "ddd")
        Case "Mon": mo = mo + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & mo
        Case "Tue": tu = tu + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & tu
        Case "Wed": we = we + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & we
        Case "Thu": th = th + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & th
        Case "Fri": fr = fr + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & fr
        Case "Sat": sa = sa + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & sa
        Case "Sun": su = su + 1: ws.Name = Application.Text(ws.Name, "dddd") & " " & su
    End Select
Next ws
End Sub
 
Last edited:
Upvote 0
There is probably a more compact way to write it, but here is one option that you can try on a copy of your workbook that does, what I think, you want.

Thanks, seem to work for most, however some of the tabs that are duplicates are 3Jan17 (2) etc. How can i manipulate this or copy/paste to serve for those tabs?

D
 
Upvote 0
Is it a one off exercise? If there's just a few maybe change them manually?
 
Upvote 0
Is it a one off exercise? If there's just a few maybe change them manually?
I wish! unfortunately I actually have another 2200 sheets to sort with about 6 or 700 duplicates :/

I'm wondering if I could run that code you gave me, then run another to remove all the "(2)" from the sheet names and then re-run the code above?
 
Upvote 0
I wish! unfortunately I actually have another 2200 sheets to sort

Eeek!

How about this:

Code:
Sub convertabstodates()
Dim ws As Worksheet, mo As Long, tu As Long, we As Long, th As Long, fr As Long, sa As Long, su As Long, s As String
For Each ws In ActiveWorkbook.Worksheets
    s = Application.Text(Left(ws.Name, 7), "dddd")
    Select Case Left(s, 3)
        Case "Mon": mo = mo + 1: ws.Name = s & " " & mo
        Case "Tue": tu = tu + 1: ws.Name = s & " " & tu
        Case "Wed": we = we + 1: ws.Name = s & " " & we
        Case "Thu": th = th + 1: ws.Name = s & " " & th
        Case "Fri": fr = fr + 1: ws.Name = s & " " & fr
        Case "Sat": sa = sa + 1: ws.Name = s & " " & sa
        Case "Sun": su = su + 1: ws.Name = s & " " & su
    End Select
Next ws
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,287
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top