Find Function via VB

J

John

Does anyone have some code that uses the Find function to look up a Column
for a typed value. As I might not know the exact value (or description) I am
looking for close matches would also be required

I want to lookup on Column B only

Thanks
 
B

Bob Phillips

Try something like

Set oCell = Columns("C:C").Find(findVal,Lookat:=xlPart)
If Not oCell Is Nothing Then
'do your stuff
Else
MsgBox "Not found"
End If

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top