Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Minimal testing:
Private Sub Worksheet_Change(ByVal Target As Range) Dim rng As Range, rng2 As Range Set rng = Me.Range("E27") Set rng2 = Me.Range("B6") If Not Intersect(rng, Target) Is Nothing Then [31:31, 39:39].EntireRow.Hidden = IsEmpty(rng.Value) End If [35:36, 47:48].EntireRow.Hidden = (rng2.Value = "PBO") End Sub Regards, Greg "ivory_kitten" wrote: I currently have the code below in my worksheet, surely I can use consistent coding to get what I need. I need to be able to show/hide various rows (sometimes single rows, sometimes blocks of rows and sometimes multiple rows not in order) which sometimes is based on a cell being empty, a cell being a set value/not a set value or being any value (not blank) Any suggestions for improvements? Private Sub Worksheet_Change(ByVal Target As Range) Dim rng As Range Set rng = Me.Range("E27") If Not Intersect(rng, Target) Is Nothing Then Rows(31).EntireRow.Hidden = IsEmpty(rng.Value) Rows(39).EntireRow.Hidden = IsEmpty(rng.Value) End If Select Case UCase(Range("B6").Value) Case "PBO" [35:36].EntireRow.Hidden = True [47:48].EntireRow.Hidden = True Case Else [35:36].EntireRow.Hidden = False [47:48].EntireRow.Hidden = False End Select End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide empty rows on open | Excel Discussion (Misc queries) | |||
Hide Empty Rows When Printing | Excel Programming | |||
Format to hide empty rows | Excel Discussion (Misc queries) | |||
Pivot Tables: How do I show ALL field rows, including empty rows?? | Excel Worksheet Functions | |||
Code to hide rows based on cell contents | Excel Programming |