CodyMonster
Board Regular
- Joined
- Sep 28, 2009
- Messages
- 155
This works as I would expect it starts looking from the bottom up:
=LOOKUP(2,1/('RiskConcentration Data'!A3:A44<>""),'RiskConcentration Data'!A3:A44)
But as soon as i try to add the address reference the lookup starts looking from the top down.
=LOOKUP(2,1/("'RiskConcentration Data'!A3:"&ADDRESS(MATCH(K4,'RiskConcentration Data'!E:E,0),1,4,1)<>""),'RiskConcentration Data'!A3:A44)
I need to find the first non blank cell in row A but this will change depending on the value.
In K4 in another sheet matches with a number in column 3 in the table below.
For example the number is 456. I'm trying to return "A" in column 1
If K4 = 890 it would return "B" in column 1
<tbody>
</tbody>
Thanks for anyone's help. I've been trying to do this myself.
No luck.
=LOOKUP(2,1/('RiskConcentration Data'!A3:A44<>""),'RiskConcentration Data'!A3:A44)
But as soon as i try to add the address reference the lookup starts looking from the top down.
=LOOKUP(2,1/("'RiskConcentration Data'!A3:"&ADDRESS(MATCH(K4,'RiskConcentration Data'!E:E,0),1,4,1)<>""),'RiskConcentration Data'!A3:A44)
I need to find the first non blank cell in row A but this will change depending on the value.
In K4 in another sheet matches with a number in column 3 in the table below.
For example the number is 456. I'm trying to return "A" in column 1
If K4 = 890 it would return "B" in column 1
A | ||
ABC | 123 | |
DFG | 456 | |
HIJ | 678 | |
B | ||
LMN | 789 | |
OPQ | 890 |
<tbody>
</tbody>
Thanks for anyone's help. I've been trying to do this myself.
No luck.