A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Will something like this work on a Mac?
Sub Make_Sheet_PDF()
'produce one pdf per sheet
Dim w As Worksheet
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each w In ActiveWorkbook.Worksheets
w.Copy
With ActiveWorkbook
.ExportAsFixedFormat Type:=xlTypePDF, _
FileName:="C:\myfolder" _
& "" & w.Name & ".pdf"
.Close
End With
Next w
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
Gord