Expected: list separator or ) Error

  • Thread starter Thread starter Legacy 319654
  • Start date Start date
L

Legacy 319654

Guest
What am I missing? I have a macro workbook trying to save as .xlsx workbook in folder xlsx_xlsx.

I get compile error: Expected: list separator or )

Code:
Sub ssFile()

ActiveWorkbook.SaveAs ("C:\Users\pnix4\Desktop\xlsm_xlsx\HireTerm  “ & Format(Now(), “DD-MMM-YYYY”) & “.xlsx”)


End Sub

Thanks
 
ah yes Alerts, sorry, my mind went blank and called them notification but you got the right idea regardless. No prob, happy to help.

Also I see it a lot but you dont have to reset DisplayAlerts...

https://msdn.microsoft.com/en-us/library/office/ff839782.aspx

If you set this property to False, Microsoft Excel sets this property to True when the code is finished, unless you are running cross-process code.

Code:
[COLOR=#333333]Sub ssFile()[/COLOR]
[COLOR=#333333]    Application.DisplayAlerts = False[/COLOR]
[COLOR=#333333]    ActiveWorkbook.SaveAs "C:\Users\pnix4\Desktop\jjjjjjjHireTerm " & Format(Now(), "DD-MMM-YYYY"), xlOpenXMLWorkbook[/COLOR]
[COLOR=#333333]End Sub[/COLOR]
 
Last edited:
Upvote 0

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.

Forum statistics

Threads
1,223,315
Messages
6,171,403
Members
452,398
Latest member
InvoicingNoob

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