R
Richard Radcliffe
I have an array with 4 columns:
A B C D
1 435 578 ID1
2 12 113 ID2
3 1478 1879 ID3
etc etc etc etc
The value I want to lookup has two components that correspond to column A
and a number that falls between columns B and C (or not):
E F
1 78
2 86
2 1500
3 1600
etc etc
So I'd like to ask is the value in column E = to the value in column A AND
does the value in column F fall between the values in columns B and C? If
yes, return column D.
In this example, I would get back:
#N/A
ID2
#N/A
ID3
etc
I hope I've explained this well.
Thanks in advance,
Richard
A B C D
1 435 578 ID1
2 12 113 ID2
3 1478 1879 ID3
etc etc etc etc
The value I want to lookup has two components that correspond to column A
and a number that falls between columns B and C (or not):
E F
1 78
2 86
2 1500
3 1600
etc etc
So I'd like to ask is the value in column E = to the value in column A AND
does the value in column F fall between the values in columns B and C? If
yes, return column D.
In this example, I would get back:
#N/A
ID2
#N/A
ID3
etc
I hope I've explained this well.
Thanks in advance,
Richard