Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please help me on how to hide specific cells when printing.
Thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can only hide entire rows or entire columns or both - but you can't hide
an individual cell. Assume you want to hide all rows in column A that are blank rows.Hidden = False On error Resume Next set rng = columns(1).specialCells(xlBlanks) On Error goto 0 if not rng is nothing then rng.EntireRow.Hidden = True End if Activesheet.Printout rows.Hidden = False -- Regards, Tom Ogilvy "Heather" wrote: Please help me on how to hide specific cells when printing. Thanks! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You cannot hide specific cells. You can hide rows/columns or change font to
white for selected cells. -- Don Guillett SalesAid Software "Heather" wrote in message ... Please help me on how to hide specific cells when printing. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hide Selected Objects | Excel Worksheet Functions | |||
Multiple cells or columns are selected instead of selected cell or | Excel Discussion (Misc queries) | |||
Create a "cell button" to hide selected cells. | Excel Worksheet Functions | |||
Hide the selected range highlighter | Excel Programming | |||
Macro to take selected cells times a selected cell | Excel Programming |