Forum Discussion
SP3990
May 26, 2025Copper Contributor
Multiple Xlookup & match
Hi
can anyone pls help how to do a multiple lookup/match.
For the below data, i want to match data in cell M4 & N3 with column B & col C and to return corresponding value of column E in cell N4.
2 Replies
Sort By
- Patrick2788Silver Contributor
You may use GROUPBY to make short work of this task:
=PIVOTBY(SampleTbl[No.],SampleTbl[Load],SampleTbl[Axial],SINGLE,,0,,0)
In N4:
=XLOOKUP($M4&N$3, $B$3:$B$1000&$C$3:$C$1000, $E$3:$E$1000, "")
Fill to the right, then down (or vice versa)