What you do to use Vlookup Formula?
Most of the members do the following :
"They convert the text numbers ('010,'020,'030..) into the numbers". Then excel simply match the absolute number with the exact absolute number. PROBLEM SOLVED !!!
No. The above is not the proper solution. Why because if we has one more master file which has text formatted numbers then how could you match this converted absolute number with the text formatted numbers in the master file.
The Proper Solution
Use the below vlookup formula
=Vlookup (text_format_number + 0 , table_array , column_index_number , false) or,
=Vlookup (text_format_number * 1 , table_array , column_index_number, false)
How it works ?
Excel can not match the text formatted number ('010) with the absolute number (10).
But excel can do calculation with any of the text format number.
For example, if we add 2 to absolute number 10 then excel results 12 (2 +10 = 12). If we add 2 to text formatted number '010 then excel results the same (2 + '010 = 12). The important point here is the excel displays the result as absolute number.
Do you have any alternative solutions please let users know by giving comment below.
I would have used
ReplyDelete=VLOOKUP(VALUE(CELL),TABLE,COLUMN)
@Roger
DeleteThanks for your comment.
The above you have mentioned is also the alternative.
I just want to explain by using only Vlookup formula.
GOOD ONE THANKS
ReplyDelete