View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
raypayette raypayette is offline
external usenet poster
 
Posts: 1
Default I want to shade a cell but when I print it, I want it white.


Place this in the Qorkbook module:

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Range("A1").Select
Selection.Interior.ColorIndex = xlNone
End Sub


--
raypayette


------------------------------------------------------------------------
raypayette's Profile: http://www.excelforum.com/member.php...o&userid=29569
View this thread: http://www.excelforum.com/showthread...hreadid=570556