Yomet,
Public Sub Test2()
Dim c
For Each c In ActiveSheet.Range("A1:J300")
If c.Value = Range("A1") Then 'This is where your search text goes
c.Select
Exit For
End If
Next
End Sub
I tried changing what you gave me to make it work by putting in the Range("A1"). The problem is, and I know it is doing what is programmed, It only selects cell A1. What I really want it to do, is search the worksheet based upon the value in cell A1. Cell A1 will change. I made a drop down list in cell A1 and I want the search to find whatever value the user selects from the list.
How do I modify this to make is search based off of cell A1?
Thank you in advance
Paul