How can I automatically print a worksheet on same day each month

D

Don Guillett

Use this idea within a workbook_open event in the ThisWorkbook module

If Day(Date) = 3 Then sheets("sheet3").PrintOut 'preview
 
Top