vlookup NA

Joelinnh

New Member
Joined
Sep 19, 2011
Messages
8
Vlookup returning NA in cell

I need to have the NA be blank.

The sheet in the workbook is not in place yet till next Monday. Once the payroll sheet is added to the book then it would give information. Until the sheet is entered I want it to come back with a blank.

Currently looks up a name from A4 then goes to sheet and returns whats in coluum 9. with out the sheet I get NA. HELP

=IF(VLOOKUP($A4,'WW382011'!$A$2:$L$2252,9,FALSE)="",0,VLOOKUP($A4,'WW382011'!$A$2:$L$2252,9,FALSE))
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try:

Code:
=IFERROR(IF(VLOOKUP($A4,'WW382011'!$A$2:$L$2252,9,FALSE)="",0,VLOOKUP($A4,'WW382011'!$A$2:$L$2252,9,FALSE)),"")
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,225
Members
452,896
Latest member
IGT

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