When ISNA doesn't work....

collywobbles

New Member
Joined
Jul 19, 2006
Messages
14
Hi,

I have an IF statement to returning "Yes" "No" possible list, using a VLOOKUP. However I also get the #N/A's included which I want to eliminate. How can I go about this when ISNA doesn't work in this situation.

The formula is this:

=IF(VLOOKUP(J12,'\\ogg\Shared Areas\LLU Programme of Works\LLU Rollout PM\[X Factor.xls]Handover Register'!$C:$I,7,FALSE)="Pass with snags","Yes","No")

Regards,

C
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You might try ISERROR, something like;

=IF(ISERROR(VLOOKUP(J12,'\\ogg\Shared Areas\LLU Programme of Works\LLU Rollout PM\[X Factor.xls]Handover Register'!$C:$I,7,FALSE)="Pass with snags","Yes","No"),””, IF(VLOOKUP(J12,'\\ogg\Shared Areas\LLU Programme of Works\LLU Rollout PM\[X Factor.xls]Handover Register'!$C:$I,7,FALSE)="Pass with snags","Yes","No")
 
Upvote 0
Try...

=LOOKUP(REPT("z",255),CHOOSE({1,2},"",IF(VLOOKUP(J12,'\\ogg\Shared Areas\LLU Programme of Works\LLU Rollout PM\[X Factor.xls]Handover Register'!$C:$I,7,FALSE)="Pass with snags","Yes","No")))

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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