Forum Discussion
mdorantes
Apr 20, 2022Copper Contributor
VLOOKUP with text and numbers in same cell
My data contains store numbers in the form "ABC 123" I am trying to vlookup the store number to reference the region the store is in. My formula now is: =VLOOKUP([@Store],StoreList,1,FALSE) R...
- Apr 20, 2022
Your VLOOKUP isn't working because it looks at the first column, but what you're asking it to look at is the second (where Store ID resides).
You'd be better served with INDEX and MATCH. as in the attached.
mdorantes
Apr 20, 2022Copper Contributor
https://discounttire-my.sharepoint.com/:x:/p/martin_dorantes/EV0h_l5wsFtLmbsiYUoxi_oBRkEX8E3JBmTy8OrdjW8Lxw?e=70lEkW
mathetes
Apr 20, 2022Silver Contributor
Your VLOOKUP isn't working because it looks at the first column, but what you're asking it to look at is the second (where Store ID resides).
You'd be better served with INDEX and MATCH. as in the attached.
- mdorantesApr 20, 2022Copper ContributorThis worked! thank you so much