Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I have used the code below, which is tied to a multi-drop-down-list in order to unhide/hide rows (unhiding rows = yes = 1, hiding rows = no = 2. The macro works fine, unless the worksheet is being protected. I then get a runtime-error 1004, saying the hidden property of the range object cannot be determined (Code-Line 8). Is there any work-around about this available? Many many thanks! Sub HideRows() Dim Rng As Range Set Rng = Sheets("Ziel1").Range("K6") If Rng.Value = 1 Then Rows("7:19").EntireRow.Hidden = False Range("K6").Select ElseIf Rng.Value = 2 Then Rows("7:19").EntireRow.Hidden = True End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
conditionally hiding rows | Excel Discussion (Misc queries) | |||
1004 Error when hiding/unhiding rows | Excel Discussion (Misc queries) | |||
Conditionally Hiding Rows | Excel Discussion (Misc queries) | |||
Run time error 1004, General ODBC error | New Users to Excel | |||
Hiding Rows Conditionally | Excel Discussion (Misc queries) |