I am having difficulty saving Each PDF in a specific folder for various users on our network. I want the code to save a PDF version of the worksheet in this location: Macintosh HD ▸ Users ▸ (Specific Username Saving the PDF) ▸ Dropbox ▸ Froghair ▸ QB Invoices
This is the code I have so far, I cannot get it to save anything. Any help is greatly appreciated. Thanks in advance!
ActiveSheet.PageSetup.PrintArea = Range("A1:G90")
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, filename:="C:Macintosh
HD\Users\" & Environ$("Username") & "\Dropbox\Froghair\QB Invoices" &
ThisWorkbook.Name & "Invoice " & Range("F6").Text & "_copy",
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:= _
True