samsilverman
Board Regular
- Joined
- Nov 9, 2009
- Messages
- 176
I am using the following 2 macros to change the font color from Black to White before printing and then back again once I save the file. I never could get Lenze's solution from Feb 2002 to work. Just for the record, Lenze has helped me plenty (directly and indirectly), so I'm not hating. Can somebody help me code it for column A, instead of cell A1? Thanks. The macros are below. I'm also open to a better solution. Private Sub Workbook_BeforePrint(Cancel As Boolean) Range("A1").Select Selection.Font.ColorIndex = 2 End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Range("A1").Select Selection.Font.ColorIndex = xlAutomatic End Sub