How to get rid of #N/A in a box?

lala121

New Member
Joined
Mar 12, 2013
Messages
19
So basically I have a quotation system for an assignment and built everything. But when nothing is selected the box which have formulas i.e. if statement, calculation and Index Match say #N/A. How do i get rid of it so basically it displays nothing in there.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hi thanks for quick reply!! i tried that but it saying something about brackers and stuff. here are the 3 formulas which i need them to be done.

=INDEX(Prices,MATCH(Quotations!R13,Prices!B4:B29,0),MATCH(Quotations!R16,Prices!C3:D3,0))
=R19*20%
=IF(L13="Yes", "£50")+(L22*R19)+R22
 
Upvote 0
Hi thanks for quick reply!! i tried that but it saying something about brackers and stuff. here are the 3 formulas which i need them to be done.

=INDEX(Prices,MATCH(Quotations!R13,Prices!B4:B29,0),MATCH(Quotations!R16,Prices!C3:D3,0))
=R19*20%
=IF(L13="Yes", "£50")+(L22*R19)+R22

If on a post-2003 system...
=IFERROR(INDEX(Prices,MATCH(Quotations!R13,Prices!B4:B29,0),
MATCH(Quotations!R16,Prices!C3:D3,0)),0)
Otherwise:
=LOOKUP(9.99999999999999E+307,CHOOSE({1,2},0,
INDEX(Prices,MATCH(Quotations!R13,Prices!B4:B29,0),
MATCH(Quotations!R16,Prices!C3:D3,0))))

Do we really need error rapping with the other two? If yes and a post-2003 system:
Rich (BB code):
=IFERROR(R19*20%,0)
=IFERROR(IF(L13="Yes", "£50")+(L22*R19)+R22,0)
 
Upvote 0

Forum statistics

Threads
1,203,071
Messages
6,053,369
Members
444,658
Latest member
lhollingsworth

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