Hi Catherine, welcome to the forum.
1) Please edit your post above and add code tags around your posted code. My signature shows an example of the tags you need to add before and after the code.
2) Don't select sheets/cells etc with VBA. It's not necessary.
Dim MyRow as Long
With Sheets("Sheet1").ListObjects("Table")
.ListObjects("Table").Range.AutoFilter Field:=5, Criteria1:=Sheets("Sheet2").Range("F2")
MyRow = .Columns(5).Find(Sheets("Sheet2").Range("F2"), LookIn:=xlValues, LookAt:=xlWhole).Row
End With
MsgBox "The row is " & MyRow
Once you fix the post above, consider posting up a sample workbook showing us BEFORE/AFTER what you're really trying to accomplish. Click GO ADVANCED and use the paperclip icon to post up a copy of your workbook.
Bookmarks