Problem getting rid of N/A

thewiseguy

Well-known Member
Joined
May 23, 2005
Messages
954
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

I can't figure out the configuration for the "IFNA" formula to rid this example of its "N/A" value. Can anyone help?

=(INDEX(FORMULA2!$I$58:$I$93,MATCH(AO5,IF(FORMULA2!$B$58:$B$93=AP5,FORMULA2!$A$58:$A$93),0)))
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
the basic syntax to eliminate N/A is

Code:
=IF(ISNA(originalformula),"",originalformula)
so for your example
Code:
=IF(ISNA((INDEX(FORMULA2!$I$58:$I$93,MATCH(AO5,IF(FORMULA2!$B$58:$B$93=AP5,FORMULA2!$A$58:$A$93),0)))),"",(INDEX(FORMULA2!$I$58:$I$93,MATCH(AO5,IF(FORMULA2!$B$58:$B$93=AP5,FORMULA2!$A$58:$A$93),0))))
 
Upvote 0
thanks Jon. I think you helped me out on this last time. I must have tried it 20 times on the INDEX function to no avail. Hopefully I can get it now.
 
Upvote 0
Hi everyone,

I can't figure out the configuration for the "IFNA" formula to rid this example of its "N/A" value. Can anyone help?

=(INDEX(FORMULA2!$I$58:$I$93,MATCH(AO5,IF(FORMULA2!$B$58:$B$93=AP5,FORMULA2!$A$58:$A$93),0)))

When successful, what does this formula return - a number or text?
 
Upvote 0
a number.

Control+shift+enter...

Code:
=LOOKUP(9.99999999999999E+307,
     CHOOSE({1,2},
       0,
       INDEX(FORMULA2!$I$58:$I$93,
          MATCH(AO5,IF(FORMULA2!$B$58:$B$93=AP5,
                                 FORMULA2!$A$58:$A$93),0))))
 
Upvote 0

Forum statistics

Threads
1,214,527
Messages
6,120,057
Members
448,940
Latest member
mdusw

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