I am having an issue with Vlookup not returning numbers (will return text). Previous users have reported similar issues but previous suggestions are not working for me. My original code is:
=VLOOKUP([Project #]@row, {projectMASTER Range 1}, 2, false) --> it returns text (ie, 40100222-64) but not numbers (ie. 40100222) -- See below:
I have tried:
=VALUE(VLOOKUP([Project #]@row, {projectMASTER Range 1}, 3, false))
=IFERROR(VLOOKUP([Project #]@row, {projectMASTER Range 1}, 2, false), VLOOKUP(VALUE([Project #]@row, {projectMASTER Range 1}, 2, false)))
The only thing that I have found to work is to manually enter the numbers. However, I have over 3000 records, more than half of which are numbers, so this doesn't seem efficient or feasible.
HELP!! 😣