Add IFERROR to a long Formula

kumara_faith

Well-known Member
Joined
Aug 19, 2006
Messages
923
Office Version
  1. 365
Hi,

I have the following formula which I am trying to add an IFERROR formula that would return blank if the result is an error. However, I am not sure how to accomplish this as when I add IFERROR before the formula at the beginning and add a comma at the end, I cant get the formula to work:

Excel Formula:
=IFERROR(H11*H9)+(I11*I9)+(J11*J9)+(K11*K9)+(L11*L9)+(M11*M9)+(N11*N9)+(O11*O9)+(P11*P9)+(Q11*Q9)+(R11*R9)+(S11*S9)+(T11*T9)+(U11)/((E11-F11-G11)*(450)),"")

Appreciate any help. Thanks
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hi,

Tried below but the formula seems to be providing incorrect value:

Excel Formula:
=IFERROR(((H11*H9)+(I11*I9)+(J11*J9)+(K11*K9)+(L11*L9)+(M11*M9)+(N11*N9)+(O11*O9)+(P11*P9)+(Q11*Q9)+(R11*R9)+(S11*S9)+(T11*T9)+(U11))/((E11-F11-G11)*(450)),"")
 
Upvote 0
Hi,

Your formula can be shorten a bit using SUMPRODUCT like below:

Excel Formula:
=IFERROR((SUMPRODUCT((H9:T9)*(H11:T11))+U11)/((E11-F11-G11)*450),"")
 
Upvote 0

Forum statistics

Threads
1,215,576
Messages
6,125,633
Members
449,242
Latest member
Mari_mariou

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