Biff,
Thanks for your quick response but when I drag the formula down, itis
still just returning the first record that meets my requirements (in your
example it would be that the number would be 12). Additionally I am not sure
if that is going to return what I am looking for: I would like to return all
of the data found in column B that matches my criteria in one cell (as an
array). Here is what I have been trying to use but has not been working:
{=INDEX($B$1:$B$8,MATCH(1,($A$1:$A$8=2),0))}
Any suggestions?
Chad
> Try this:
>
[quoted text clipped - 19 lines]
> > Thanks in advance,
> > Chad
T. Valko - 07 Mar 2007 21:24 GMT
>when I drag the formula down, itis still just returning
>the first record that meets my requirements
It sounds like you have calculation set to manual. Set calculation to
automatic.
>I would like to return all of the data found....in one cell
Depending on how many cells meet the criteria you could use the formula I
suggested and then concatenate those results into a single cell.
For example:
The array formula results are in E1:E5
Then use this formula to concatenate those results:
=E1&","&E2&","&E3&","&E4&","&E5
If that's not acceptable the only other option is a VBA procedure. I can't
help you with that.
Biff
> Biff,
> Thanks for your quick response but when I drag the formula down, itis
[quoted text clipped - 36 lines]
>> > Thanks in advance,
>> > Chad