I created a form combo box that filters data in a spreadsheet (Excel 2003) and would like the first value to be "ALL". When selected, all the values would be shown. This is the code that I currently have:
End Sub
Any ideas?
Thanks,
Sam
Code:
Sub DropDown20_Change()
Dim r As Range
Set r = Range("DATASET")
r.AdvancedFilter xlFilterInPlace, Range("ref")
Range("A1").Select
End Sub
Any ideas?
Thanks,
Sam