Dim cell as Range
rows.Hidden = False
for each cell in Range("C1:C200")
if cell.Value = 3 then
rows(cell.Row).Hidden = True
exit for
end if
Next
--
Regards,
Tom Ogilvy
"Dan G." <dgesshel@socal.rr.com> wrote in message
news:uHW4LKtjFHA.3756@TK2MSFTNGP15.phx.gbl...
> Hello.
>
> I am trying to hide a row based on a value in a cell within the row. I
> need this to take place as the sheet re-calculates after a different
> selection is made from the Forms combo-box.
>
> Not sure why I'm having issues, as this should be pretty
> straightforward.
>
> Any help would be greatly appreciated.
>
> Thanks.
>
> Dan
>
> *** Sent via Developersdex http://www.developersdex.com ***
Bookmarks