I get this error:
Run-time error '1004':
Method 'PrintOut' of object '_Worksheet' failed
When I run this code:
Dim printSheet As Worksheet
For Each printSheet In ActiveWorkbook.Sheets
printSheet.PrintOut
Next printSheet
And it is driving me crazy. All I want to do is print each sheet individually.
Does anyone know possible reason for why it isn't working?
Run-time error '1004':
Method 'PrintOut' of object '_Worksheet' failed
When I run this code:
Dim printSheet As Worksheet
For Each printSheet In ActiveWorkbook.Sheets
printSheet.PrintOut
Next printSheet
And it is driving me crazy. All I want to do is print each sheet individually.
Does anyone know possible reason for why it isn't working?