Hello everyone,
I have a fairly large sheet (~5000 rows). I have one column whose value gets changed based on data from another column within the sheet. The source column is a country code column and the column that gets updated displays region based on the country code (EMEA, LATAM, NA, etc.). I decided to create another helper sheet that holds the mappings from country codes to regions (and it also holds some other helper columns that allow me to customize my sheet).
To fill in the region column based on country code column, I've created a VLOOKUP formula like this: =VLOOKUP([Country Code]@row, {Regions [ALL 3]}, 3), where {Regions [ALL 3]} is a reference to the helper sheet that has 3 columns (Country Code, Region, Center). So this is where I've run into a problem, I'm getting a #NOMATCH error on some rows even though the values are 100% correct and the mapping should work. After investigating, it appears that there is a cross-reference sheet limit. My question is, could it be the limit causing this? How would I check if it is and if so, is there a better workaround other than a complex nested IF() statement? It would be amazing if I could avoid using IF's, because otherwise I'd have almost 80 nested IF statements.
Cheers