Forum Discussion
colineversden
Nov 04, 2024Copper Contributor
LOOKUP QUERY
I have a problem with a lookup table whereby we have a series of part numbers all starting with the same numeric value but then end with a different alpha numeric value. When we run the Lookup it won...
NikolinoDE
Nov 04, 2024Gold Contributor
=XLOOKUP(B14, Data!A5:A404, Data!E5:E404, "Not Found") * AN5
XLOOKUP is more flexible and doesn’t require the data to be sorted, plus it allows for an exact match lookup, which would suit part numbers with similar starting digits.
- colineversdenNov 04, 2024Copper Contributor
NikolinoDE That works fine thankyou.
- NikolinoDENov 04, 2024Gold Contributoryw