View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Conditional macro to hide rows

Why not just filter on values < 0?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Rob" wrote in message
...
try:
with Range("your range")
for each cell in .columns(3) 'column within the range with the hours
if cell=0 then
cell.entirerow.hidden=true
else
cell.entirerow.hidden=false
end if
next
end with



"cher" wrote:

I have a worksheet containing employee ID numbers and hours worked on

each
job. I need help with a macro to hide all rows on the worksheet that

have
zero hours for any job.