Error in vlookup result

M

MJ

I got a #N/A error when using the vlookup function even though I changed the
'Table_Array' column format into 'Number'. I had to double click on each
cell in the 'Table_Array' column before it worked. Is there a way to correct
this?

Thanks
 
P

Pete_UK

Sounds like the values in your lookup table were text instead of
numbers. Rather than change them, you could make the lookup value into
a text value with something like:

=VLOOKUP(A2&"",table,column etc)

To get rid of the #N/A error you would use a construct like:

=IF(ISNA(your_formula),"",your_formula)

to return a blank instead.

Hope this helps.

Pete
 
S

sand

Hi,

Select the column for which you had to double click on cell,go to data
menu - text to column - delimited - next - uncheck all check box - next -
finish
 
M

MJ

Yay, thanks. This was a bit easier.

sand said:
Hi,

Select the column for which you had to double click on cell,go to data
menu - text to column - delimited - next - uncheck all check box - next -
finish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top