Hi Guys,
Running the Following Code which works a Treat But I can Figure out How after I get the Filters to apply how i Select the First Visible Cell
The Table has Two Rows as a Header to the Data so as you can see filters apply. After the Filters apply there will only be 1 row of Data Visible i Want to take the data from within Column "AL" Row "X", Where "X" is the Visible Row and Display it in UserForm1.Textbox1.Text
But i cant remember how to select the Visible row/Cell
any ideas??
Running the Following Code which works a Treat But I can Figure out How after I get the Filters to apply how i Select the First Visible Cell
Code:
Worksheets("Trade_List").Select
With Worksheets("Trade_List")
.AutoFilterMode = False
Range("C3").Select
Selection.AutoFilter field:=3, Criteria1:=ComboBox1.Value
Range("B3").Select
Selection.AutoFilter field:=2, Criteria1:=ComboBox2.Value
Range("AL2").Offset(1, 0).Select
End With
The Table has Two Rows as a Header to the Data so as you can see filters apply. After the Filters apply there will only be 1 row of Data Visible i Want to take the data from within Column "AL" Row "X", Where "X" is the Visible Row and Display it in UserForm1.Textbox1.Text
But i cant remember how to select the Visible row/Cell
any ideas??