A macro made in Excel on a Windows machine isn't working on my mac. Below is the section it's getting hung up on and giving me a syntax error. Trying to figure out what I could do to make this work. I'm guessing it's the filename designation. Frankly, I don't care where it gets saved on my mac, but if someone could help me out with the filename path, that'd probably do the trick.
ActiveWorkbook.SaveAs _
Filename:=C:\Reports\ & "_Daily_Report", _
FileFormat:=xlOpenXMLWorkbook, _
Password:="", _
WriteResPassword:="", _
ReadOnlyRecommended:=False, _
ActiveWorkbook.SaveAs _
Filename:=C:\Reports\ & "_Daily_Report", _
FileFormat:=xlOpenXMLWorkbook, _
Password:="", _
WriteResPassword:="", _
ReadOnlyRecommended:=False, _