#N/A

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Can someone please help,

Is there any way to not show the error "#N/A" when a formula is waiting for criteria

my formula is ;

=INDEX(Supplier!$C$5:$C$505,MATCH(B12,Supplier!$A$ 5:$A$505,0),0)

and works fine when i enter a line, but until i enter the line it shows #N/A and looks un professional

Any ideas

Kind Regards
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
You can use the ISNA function, i.e.

=IF(ISNA(formula),"",formula)
replace the two formula references with your formula
 
Upvote 0
Can someone please help,

Is there any way to not show the error "#N/A" when a formula is waiting for criteria

my formula is ;

=INDEX(Supplier!$C$5:$C$505,MATCH(B12,Supplier!$A$ 5:$A$505,0),0)

and works fine when i enter a line, but until i enter the line it shows #N/A and looks un professional

Any ideas

Kind Regards

=IF(B12="","",INDEX(Supplier!$C$5:$C$505,MATCH(B12,Supplier!$A$ 5:$A$505,0),0))
 
Upvote 0
Tried but cannot get to work

=IF(ISNA(=INDEX(Supplier!$C$5:$C$505,MATCH(B6,Supplier!$A$5:$A$505,0),0)),"",=INDEX(Supplier!$C$5:$C$505,MATCH(B6,Supplier!$A$5:$A$505,0),0))

Sorry, but i cannot get this to work?

regards
 
Upvote 0
You should only put an equal sign at the very beginning of your formula, and whatch your parentheses i.e.

=IF(ISNA(INDEX(Supplier!$C$5:$C$505,MATCH(B6,Supplier!$A$5:$A$505,0),0),"",INDEX(Supplier!$C$5:$C$505,MATCH(B6,Supplier!$A$5:$A$505,0),0))
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,993
Latest member
Seri

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