E
edvwvw via OfficeKB.com
Rob
You could try a small macro as below: this will create an autofilter
Sub Test()
Columns("A:C").Select
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=Range("F1")
End Sub
I have only looked at columns A to C and put the value that you are looking
for in F1- if you attach a button to the macro it will help
edvwvw
You could try a small macro as below: this will create an autofilter
Sub Test()
Columns("A:C").Select
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=Range("F1")
End Sub
I have only looked at columns A to C and put the value that you are looking
for in F1- if you attach a button to the macro it will help
edvwvw