I have written the following:
ActiveWorkbook.SaveAs Filename:= _
"https://gc.sharepoint.com/sites/Adm...ustomer Pricing/Campari/1_Open Order Reports/" & "Campari Dashboard " & Format(Now, "m.dd.yy") & ".xlsx" _
, FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
The file is saved correctly in the folder. However, when it is attached to an email using the below:
.Attachments.Add (ActiveWorkbook.FullName)
....it contains "%20" where the spaces should be in the filename.
Help is greatly appreciated!
ActiveWorkbook.SaveAs Filename:= _
"https://gc.sharepoint.com/sites/Adm...ustomer Pricing/Campari/1_Open Order Reports/" & "Campari Dashboard " & Format(Now, "m.dd.yy") & ".xlsx" _
, FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
The file is saved correctly in the folder. However, when it is attached to an email using the below:
.Attachments.Add (ActiveWorkbook.FullName)
....it contains "%20" where the spaces should be in the filename.
Help is greatly appreciated!