Conditional hidding row
Closed
ben
-
Jul 5, 2011 at 02:29 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jul 6, 2011 at 08:11 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jul 6, 2011 at 08:11 AM
Related:
- Conditional hidding row
- Saints row 2 cheats - Guide
- How to delete a row in a table in word - Guide
- Saints row free download - Download - Action and adventure
- Vba get last row not empty - Guide
- To change conditional formatting that applies a red fill color to one that applies a green fill color, which of the following can you do? - Excel Forum
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jul 5, 2011 at 06:48 AM
Jul 5, 2011 at 06:48 AM
Not too sure how things are but have you looked at the using the change event of sheet by utilizing the routine
Private Sub Worksheet_Change(ByVal Target As Range) End Sub
Jul 5, 2011 at 06:55 AM
Actually, I use these macro:
Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$M$15" Then
If Target.Value = OTHE Then
Rows [62:72].EntireRow.hidden = True
Else
Rows [62:72].EntireRow.hidden = False
End If
End If
End Sub
but it reports a PopUp with: Argument not Optional
And there, I'm stuck ;-(((
Jul 5, 2011 at 08:10 AM
Jul 6, 2011 at 12:38 AM
really don't understand what happens ;-(
Jul 6, 2011 at 08:11 AM