VLOOKUP NA error

trianna

New Member
Joined
Jul 15, 2010
Messages
1
Hello all,

I hope that someone with a brain strong than mine can provide some assistance with VLOOKUP NA errors.

I have Excel tables that I am using the following VLOOKUP formulas on. As expected they return the #N/A error when no data is found.

=VLOOKUP('Outbound Agent Count'!B4, T2Info, 20, FALSE)&", "&VLOOKUP('Outbound Agent Count'!B5, T2Info, 21, FALSE)

=VLOOKUP(C4, T2Info, 18, FALSE)

My need is to have a blank cell returned instead of the #N/A error.

I have tried many things including ISNA and ,””, and nothing is working.

Please help if you can as I am desperate and going bald from pulling my hair out.

Thank you,

Trianna
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
That solution is great!

I have used IFERROR with success too; it is faster than ISERROR because it evaluates VLOOKUP only once.

=IFERROR(VLOOKUP(a1,b:d,3,false),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,330
Messages
6,124,307
Members
449,151
Latest member
JOOJ

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