How do I save the worksheet into a new workbook with the file name referencing from Sheet1 C3?
Currently this is the vba code that I am using right now.
Currently this is the vba code that I am using right now.
VBA Code:
Sub Billing_Milestone()
Worksheets("Billing Milestone").Copy
With ActiveWorkbook
.SaveAs Filename:= "C:\Users\Desktop" & "Billing Milestone", FileFormat:=xlOpenXMLWorkbook
.Close savechanges:=False
End With
End Sub