I tried the following to filter (between filter) my worksheet based on 2 values. The 2 values are input in textbx1 and textbox2 in userform 'A1_Filter_Range'.
But the code doesn't work ... I get error: Run-Time error'424': Object required'
ActiveSheet.Range("$A$1:$AD$2000").AutoFilter Field:=17, _
Criteria1:=TextBox1.Value, _
Operator:=xlAnd, _
Criteria2:=TextBox2.Value
Any ideas? Thanks SMORF