Thread
:
Auto-Hide Rows Macro
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Jarek Kujawa[_2_]
external usenet poster
Posts: 896
Auto-Hide Rows Macro
select yr data and use this macro
Sub hideem()
For Each cell in Selection
If cell.Value = "n/a" Then
cell.Rows.Entirerow.Hidden = True
End if
Next cell
End Sub
Reply With Quote
Jarek Kujawa[_2_]
View Public Profile
Find all posts by Jarek Kujawa[_2_]