Customize return from VLOOKUP

BillTony

Board Regular
Joined
May 3, 2017
Messages
70
I use the formula shown below frequently to eliminate the #N/A from the return of a VLOOKUP.

In addition, I would like to specify what result is returned from the lookup.

Basically, instead of retrieving the value that is found in the cell (e.g. a product number) I would simply like to display something like "found" or "x", etc.

As always, any insight is GREATLY appreciated!

Code:
=IF(ISNA(VLOOKUP(A2,'Tab 1'!A:B,1,FALSE)),"",(VLOOKUP(A2,'Tab 1'!A:B,1,FALSE)))
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
try

=if(iserror(VLOOKUP(A2,'Tab 1'!A:B,1,FALSE)),"","found")
 
Upvote 0

Forum statistics

Threads
1,223,900
Messages
6,175,276
Members
452,629
Latest member
SahilPolekar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top