RockandGrohl
Well-known Member
- Joined
- Aug 1, 2018
- Messages
- 801
- Office Version
- 365
- Platform
- Windows
This is the Index Match with multiple criteria I'm using;
{=INDEX(range1,MATCH(1,(A1=range2)*(B1=range3),0))}
So two criteria. For the first criteria it's going to be a lookup value to range match, so like "Cotswold Adventure" will match with "Cotswold Adventure"
For the second criteria, it's got to match within a list. I'm trying to look up "Luton" amongst a list inside one cell that looks like this:
In terms of specific syntax, this is what I have, which failed:
[/FONT]
Hope there is a solution. I'm aware that my search result is bringing back "111" when used on its own, instead of what I need. Maybe a nested IF?
Thanks!
{=INDEX(range1,MATCH(1,(A1=range2)*(B1=range3),0))}
So two criteria. For the first criteria it's going to be a lookup value to range match, so like "Cotswold Adventure" will match with "Cotswold Adventure"
For the second criteria, it's got to match within a list. I'm trying to look up "Luton" amongst a list inside one cell that looks like this:
Code:
[TABLE="width: 565"]
<tbody>[TR]
[TD]"Oxford, Oxford Services (M40), Oxford Peartree Services (A34), Thame, Aylesbury, Leighton Buzzard, Dunstable, Luton, Stevenage, Letchworth, Cambridge"[/TD]
[/TR]
</tbody>[/TABLE]
[FONT=Verdana]
In terms of specific syntax, this is what I have, which failed:
[/FONT]
Code:
{=INDEX('[Price Panels 2019.xlsm]All Tours'!$A:$A,MATCH(1,(H2='[Price Panels 2019.xlsm]All Tours'!$C:$C)*(G2=SEARCH(G2,'[Price Panels 2019.xlsm]All Tours'!$K:$K)),0))}
Hope there is a solution. I'm aware that my search result is bringing back "111" when used on its own, instead of what I need. Maybe a nested IF?
Thanks!