Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How to search a range for asuburb that if found could contain up to 50
different corresponding post codes. After its found how can it be checked againsts an example. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can you provide more details? What does your data look like (what is in
rows, cols)? "Bogan.." wrote in message ... How to search a range for asuburb that if found could contain up to 50 different corresponding post codes. After its found how can it be checked againsts an example. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
set rng = Range("A1:A50").Find( "string")
set rng1 = rng.offset(0,1).Resize(1,50) for each cell in rng1 if cell.Value = "ExampleValue" then msgbox "Found" end if Next -- Regards, Tom Ogilvy "Bogan.." wrote in message ... How to search a range for asuburb that if found could contain up to 50 different corresponding post codes. After its found how can it be checked againsts an example. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extracting data from large range | Excel Discussion (Misc queries) | |||
If AND for large range of data | Excel Worksheet Functions | |||
Select a large range | Excel Worksheet Functions | |||
Search range for text not in another range | Excel Discussion (Misc queries) | |||
Vlookup in large named range | Excel Worksheet Functions |