View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default How to Avoid Printing Blank Rows

Dim rng as range
On error resume Next
set rng = Selection.Specialcells(xlBlanks)
On error goto 0
if not rng is nothing then rng.EntireRow.Hidden = True
Selection.Printout
if not rng is nothing then rng.EntireRow.Hidden = False

--
Regards,
Tom Ogilvy


Yogesh wrote in message
...
Hi All,

How do i avoid printing blank rows in a Selected Range of cells using
VBScript.

Thank you,