Hi all,
I've recently put together an excel doc on Windows with a 'print macro' that I've since discovered is not working for those who are accessing the document on a mac.
I have a handful of macro's that are used depending on which sheets need to be printed (there's a 'print friendly' version for each entry page that fits on 2pages and is black and white not all the pretty colourful stuff), but they are follow the same code
Is there a way to make this work whether your using mac or windows?
Cheers,
I've recently put together an excel doc on Windows with a 'print macro' that I've since discovered is not working for those who are accessing the document on a mac.
I have a handful of macro's that are used depending on which sheets need to be printed (there's a 'print friendly' version for each entry page that fits on 2pages and is black and white not all the pretty colourful stuff), but they are follow the same code
Code:
Sub Initial_Print()
' Initial_Print Macro
Sheets("Initial Referral_Print").Visible = True
Sheets("Initial Referral_Print").Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
Sheets("Initial Referral_Print").Visible = False
Sheets("Initial Referral").Select
End Sub
Is there a way to make this work whether your using mac or windows?
Cheers,