Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, There must be an easy solution to this. I am working with an array of values and need to look up each value in a worksheet and store the value of a cell 3 columns away in another array. Now the following code works for single variable Dim Pre as string With Worksheets("Pre_Rawdata").Range("h2:p8") Pre = .Find(What:="13", After:=.Cells(1, 1), _ LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, _ SearchDirection:=xlNext, MatchCase:=False).Offset(0, 3) End With but I actually need to do the same thing but where pre is an array and the What:= term is an array. like this Dim Pre(1 to 25) as string Dim precondtition(1 to 25) as string For i = 1 To 25 With Worksheets("Pre_Rawdata").Range("h2:p8") Pre(i) = .Find(What:=precondition(i), After:=.Cells(1, 1), _ LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, _ SearchDirection:=xlNext, MatchCase:=False).Offset(0, 3) End With next I get "Object variable or with block variable not set" How can I find all the members of an array in a range and store the results in another array??? Thanks for any help, Luis -- lif ------------------------------------------------------------------------ lif's Profile: http://www.excelforum.com/member.php...o&userid=35745 View this thread: http://www.excelforum.com/showthread...hreadid=555836 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to find a result in an array in the same row as a minimum resu | Excel Discussion (Misc queries) | |||
Find specific value in array of array formula | Excel Worksheet Functions | |||
meaning of : IF(Switch; Average(array A, array B); array A) | Excel Worksheet Functions | |||
Use FIND to return an array of items | Excel Programming | |||
Alphabetizing array items | Excel Programming |