Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As an example, the following code will hide/unhide rows where the cell in
column A has "Complete" Sub toggle_hidden_rows() Dim c As Range For Each c In ActiveSheet.Range("A1:A100") If c.Value = "Complete" Then With c.EntireRow .Hidden = Not .Hidden End With End If Next c End Sub -- Hope that helps. Vergel Adriano "Maax" wrote: Hello all, I wonder if it is possible to create a macro that would toggle rows from hidden to unhidden? I would like the button to hide all rows that have a particular cell as "complete". If this requires 2 seperate buttons that is not a problem. I think i may need to have a range in for the row (A1 to M1 for example) as i have some data already hidden beyond M1 (used in drop down lists). any help would be much appreciated. thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I get cell="complete" to move user to date cell? | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
"Print titles must be contiguos and complete rows or columns?" | Excel Discussion (Misc queries) | |||
macro to hide all rows that have a cell value of "complete" | Excel Programming | |||
Using Macro to hide rows that have a "0" quantity value | Excel Programming |