Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All
The following code works well in XL 2K but not 2003. I have a combobox with 7 categories. Test 1 –5, “All” and “Show 123”. Does anyone have any idea how I might produce the same code in XL 2003. Thanks in advance. Chad Private Sub ComboBox1_Change() Dim lw As Long Application.ScreenUpdating = False Range("A7:A100").EntireRow.Hidden = False lw = Range("A" & Rows.Count).End(xlUp).Row ' If Range( For i = lw To 2 Step -1 If Range("A" & i).Value = ComboBox1.Value Then Range("A" & i).EntireRow.Hidden = True ElseIf ComboBox1.Value = "All" Then Range("A7:A100").EntireRow.Hidden = False ElseIf ComboBox1.Value = "Show 123" Then If Range("A" & i).Value = "Test4" Or _ Range("A" & i).Value = "Test5" Then Range("A" & i).EntireRow.Hidden = True End If End If Next i Calculate Application.ScreenUpdating = True End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Works in 2007 but not 2003 | Excel Discussion (Misc queries) | |||
Works in 2000 not in 2003? | Excel Programming | |||
Combo Box vba that works like Forms Menu combo box | Excel Programming | |||
how do I set up a command button that works with a combo box | Excel Discussion (Misc queries) | |||
Macro works in 2003, not in '97 | Excel Programming |