Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it possible to auto hide/unhide rows based on a vlaue that may/may not be
present? For example, instead of writing many different macros, I would like a macro to check say column A, and hide every row that has "n/a" as a value in column A. The values in column A would be based on If Then statements, so they would change to/from "n/a" depending upon other variables. I would like for the macroo to continue to monitor and auto hide/unhide actively depending upon that "n/a" value being present in column A Any suggestions? Thank you in advance! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto hide corresponding rows in 2 worksheets? | Excel Discussion (Misc queries) | |||
auto hide unhide in grey rows above how did I manage this | Excel Worksheet Functions | |||
Want to auto hide rows in excel when no data in a certain column. | Excel Discussion (Misc queries) | |||
Auto Hide Columns & Rows | Excel Discussion (Misc queries) | |||
AUTO HIDE ROWS | Excel Worksheet Functions |