How can I take the code listed below and do a search on a single column. In part of the sub I might want to seach Col B and in another part of the sub I might want to search Col J. What do I need to do to this so it will limit the search to a particular column.

Set wsEnroll = Workbooks("Enrollment Verifier DV.xls").Sheets("0708")
  
Set rData = wsData.Cells.Find(What:=sID, After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False)