View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Babymech Babymech is offline
external usenet poster
 
Posts: 49
Default Basic VBA question - hiding rows

Hmm... That does help, part of the way... after getting the formatting right
there's no longer a compile error, but now I don't know where the error is.
I've checked that the code is in the right place, but when I make a selection
change in the appropriate sheet, nothing happens. I know that macros are
enabled, since if I leave the incorrect formatting in there it shows an error
when I change selection in that sheet, but when the correct code is in place,
nothing at all happens. Any ideas?

"Pete_UK" wrote:

Note that these lines:

cell.EntireRow.Hidden = Not
cell.EntireRow.Hidden

should be all one line - it has wrapped in the posting, and should be
like this:

cell.EntireRow.Hidden = Not _
cell.EntireRow.Hidden

or like this (without indents):

cell.EntireRow.Hidden = Not cell.EntireRow.Hidden

Hope this helps.

Pete

On Jan 15, 10:21 am, Babymech
wrote:
Thanks for the quick reply - unfortunately I can't get that to work... When I
insert the code it immediately marks the line cell.entirerow.hidden = true
as red, and when I try to run it, I get a syntax error. VBA tells med it
expects an expression there... Any ideas?



"Bob Phillips" wrote:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Const WS_RANGE As String = "A:A" '<== change to suit
Dim cell As Range


On Error GoTo ws_exit
Application.EnableEvents = False


If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then


With Target


If .Row 3 Then


If .Value = Me.Range("A3").Value Then


For Each cell In Me.Range("A4")..Resize(.Row - 3)


If cell.Value < Me.Range("A3").Value Then


cell.EntireRow.Hidden = Not
cell.EntireRow.Hidden
End If
Next cell
End If
End If
End With
End If


ws_exit:
Application.EnableEvents = True
End Sub


'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
__________________________________
HTH


Bob- Hide quoted text -


- Show quoted text -