I'm pretty sure I need to include an array in my function.
If anyone is still game to help with this, it's very much appreciated.
Thank you and Happy New Year!
Karen S
----- Max wrote: -----
...
......
On Max's solution, I'm not looking on just one row for my result.
I want
to be able to scan two entire columns looking for two provided specific
values (ie; "Albany" in one column and "1999" in the other column), one from
each column. I want to result with the value in a third column from the row
where the two given values match the given criteria in the first two
columns. of
them), and AND and maybe MATCH. It needs to use arrays. If the following
worked this would be something like what I need:"unavailable")
Still think my earlier suggestion should have worked,
albeit you seemed to have changed your specs quite a bit
going by your latest description above:
ok, my understanding of your latest specs:
Check where col A = "Albany" and col B = 1999
Where it is so, return the corresponding value in col C
Otherwise, return "unavailable"
To effect the above, try this:
a. Put in say, D2:
=IF(AND(A2="ALBANY",B2=1999),C2,"unavailable")
[note the absence of quotes "..." for the numerics in col B]
b. Copy the formula in D2 down col D
as many rows as you have data in the cols A, B & C
Col D should return what you're after