nigelandrewfoster
Well-known Member
- Joined
- May 27, 2009
- Messages
- 747
When I replace the recorded code for reliably printing a particular range with this simplified version, all manner of strange results can occur, usually small printouts or partial printouts. Am I missing something?
Thanks!
Nigel
Code:
Sub DAILY_TASKS()
With ActiveSheet
.PageSetup.PrintArea = "$A$1:$u$50"
.PrintOut Copies:=1, Collate:=True
End With
End Sub
Nigel