Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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) "John" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find function | Excel Worksheet Functions | |||
Find Function | Excel Worksheet Functions | |||
Help with the FIND function | Excel Worksheet Functions | |||
Find function | Excel Worksheet Functions | |||
backwards find function to find character in a string of text | Excel Programming |