Save File with ordinal date (1st, 2nd, 3rd) Name

laugil

New Member
Joined
Jul 16, 2017
Messages
1
Hello all,

I've been trying everything and searching without luck. I'm trying to save a file with an Ordinal date (1st, 2nd, 3rd). I need the name to look like Summary June 10th to June 16th.

The code I have so far is:


ActiveWorkbook.SaveAs ("C:\Users\Laura" _ & "Summary " & Application.WorksheetFunction.Proper(Application.WorksheetFunction.Text(Now() - 7, "Mmmm")) _
& " ") & Day(Now() - 7) & " " & "to" & " " _
& Application.WorksheetFunction.Proper(Application.WorksheetFunction.Text(Now() - 7, "Mmmm")) _
& " " & Day(Now() - 1) & ".xlsx"


Please let me know if you need me to be more clear!

Regards,
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Code:
SheetName = Format(Now() - 7, "mmmm d")
Select Case Day(Now() - 7)
    Case 1
        SheetName = SheetName & "st"
    Case 2
        SheetName = SheetName & "nd"
    Case 3
        SheetName = SheetName & "rd"
    Case Else
        SheetName = SheetName & "th"
End Select

SheetName = SheetName & " to " & Format(Now()-1, "mmmm d")
Select Case Day(Now() - 1)
    Case 1
        SheetName = SheetName & "st"
    Case 2
        SheetName = SheetName & "nd"
    Case 3
        SheetName = SheetName & "rd"
    Case Else
        SheetName = SheetName & "th"
End Select

ActiveWorkbook.SaveAs "C:\Users\LauraSummary " & SheetName & ".xlsx"
 
Upvote 0
Try this:
Code:
Dim DateStr(1 To 2) As String, ii As Byte, xx As String
For ii = 1 To 2 Step 1
    Select Case (Day(Date - 7 + (ii - 1) * 6) Mod 30) Mod 20
        Case 1: xx = "st"
        Case 2: xx = "nd"
        Case 3: xx = "rd"
        Case Else: xx = "th"
    End Select
    DateStr(ii) = Format(Date - 7 + (ii - 1) * 6, "mmm d") & xx
Next ii
ActiveWorkbook.SaveAs "C:\Users\Laura\Desktop\Summary " & DateStr(1) & " to " & DateStr(2) & ".xlsx"
 
Upvote 0

Forum statistics

Threads
1,215,491
Messages
6,125,108
Members
449,205
Latest member
ralemanygarcia

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