Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Todd F.
 
Posts: n/a
Default getting ride of #n/a result from vlookup

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default getting ride of #n/a result from vlookup

Put the vlookup inside a test for NA; instead of =vlookup(...), use
=if(isna(vlookup(...)),"",vlookup(...))

"Todd F." wrote:

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Todd F.
 
Posts: n/a
Default getting ride of #n/a result from vlookup

Thanks alooot it is for a co-worker but i will use it to

"bpeltzer" wrote:

Put the vlookup inside a test for NA; instead of =vlookup(...), use
=if(isna(vlookup(...)),"",vlookup(...))

"Todd F." wrote:

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RADIOOZ
 
Posts: n/a
Default getting ride of #n/a result from vlookup

Had a simialr prob recently. Used a combination of IF and ISERROR to remove
the error messages. Try something similar to =IF(ISERROR(FIND("EI",'Previous
Project'!L5)),'Previous Project'!L5," "), this returned the value of cell L5
on another sheet if the letters EI were included in the value or a blank cell
if the letters were not in the value

"Todd F." wrote:

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RADIOOZ
 
Posts: n/a
Default getting ride of #n/a result from vlookup

sorry may not work just realised that was not a lookup I was doing.

"Todd F." wrote:

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RADIOOZ
 
Posts: n/a
Default getting ride of #n/a result from vlookup

try this sort of thing:
IF(ISERROR(VLOOKUP(A21,'Paste Tiq'!$A$1:$T$700,7,FALSE)),"
",VLOOKUP(A21,'Paste Tiq'!$A$1:$T$700,7,FALSE))

"Todd F." wrote:

How does one best do away with the #n/a symbol when that is what the vlookup
returns

Is there a way to tell it to return "blank" or a designated value when the
voolkup does not come up with an exact match

note always use "false" - exact match.

Hey I appreciate your time

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA Monty Excel Worksheet Functions 2 January 30th 06 01:37 PM
spell number JAWAD CHOHAN Excel Worksheet Functions 1 December 12th 05 05:58 PM
I NEED HELP with the SPELLNUMBER Function vag Excel Worksheet Functions 0 June 21st 05 08:17 AM
EXCEL:NUMBER TO GREEK WORDS vag Excel Worksheet Functions 1 June 15th 05 05:57 PM
Convert Numeric into Text Monty Excel Worksheet Functions 0 December 18th 04 09:25 PM


All times are GMT +1. The time now is 03:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"