VLOOKUP show Error massage in a column

nature969

Board Regular
Joined
Dec 20, 2016
Messages
55
Hi Guys

I am using the below Vlookup ( lookup one value and return multiple values). I need one more step to add on this formula to show all errors (#NA) as text " Not Find" in ONE column. Currently the formula shows "Not find" in all un-matched columns.

=iferror(vlookup($A1,Table1,column(A1),0),"Not Find")

Thanks
 
change Table1 to $B$5:$E$12

Same

1590629977105.png
 
Upvote 0

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
I'm not sure whether IFNA is available in Excel 2016, please try this:
Book1.xlsx
ABCDEFGHI
1LookupValue1Value2Value3
2A281065
3HNot Find  
4G543692
5NameValue1Value2Value3
6A281065
7B238938
8C88553
9D795111
10E829340
11F937122
12G543692
Sheet10
Cell Formulas
RangeFormula
G2:I4G2=IF(ISNUMBER(MATCH("Not Find",$F2:F2,)),"",IF(ISNA(VLOOKUP($F2,$B$5:$E$12,COLUMN(B1),0)),"Not Find",VLOOKUP($F2,$B$5:$E$12,COLUMN(B1),0)))
 
Upvote 0
I'm not sure whether IFNA is available in Excel 2016, please try this:
Book1.xlsx
ABCDEFGHI
1LookupValue1Value2Value3
2A281065
3HNot Find  
4G543692
5NameValue1Value2Value3
6A281065
7B238938
8C88553
9D795111
10E829340
11F937122
12G543692
Sheet10
Cell Formulas
RangeFormula
G2:I4G2=IF(ISNUMBER(MATCH("Not Find",$F2:F2,)),"",IF(ISNA(VLOOKUP($F2,$B$5:$E$12,COLUMN(B1),0)),"Not Find",VLOOKUP($F2,$B$5:$E$12,COLUMN(B1),0)))
Thanks :) I got it.
 
Upvote 0

Forum statistics

Threads
1,216,109
Messages
6,128,883
Members
449,477
Latest member
panjongshing

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