ISNA help needed

cashmire

New Member
Joined
Mar 26, 2002
Messages
30
Hi,

anyone please help with a ISNA formula I'm trying to create. The following formula creates an #N/A result:
=VLOOKUP(D19475&AW19475,'SGD Exch'!$J:$K,2,FALSE)

I'd like to blnk out this result. If I run an ISNA on the vlookup formula is just says TRUE but I need it to blank it so I can use the data in a pivot table.

Anyone have an idea on how to solve this?

thanks!
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi,

anyone please help with a ISNA formula I'm trying to create. The following formula creates an #N/A result:
=VLOOKUP(D19475&AW19475,'SGD Exch'!$J:$K,2,FALSE)

I'd like to blnk out this result. If I run an ISNA on the vlookup formula is just says TRUE but I need it to blank it so I can use the data in a pivot table.

Anyone have an idea on how to solve this?

thanks!
Try one of these...

This one will work in ANY version of Excel:

=IF(ISNA(VLOOKUP(D19475&AW19475,'SGD Exch'!$J:$K,2,0)),"",VLOOKUP(D19475&AW19475,'SGD Exch'!$J:$K,2,0))

This one will work in Excel 2007 or later:

=IFERROR(VLOOKUP(D19475&AW19475,'SGD Exch'!$J:$K,2,0),"")

Note that the IFERROR version will trap ALL errors, not just #N/A errors.
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,896
Members
452,948
Latest member
Dupuhini

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