Add IFERROR to a long Formula

kumara_faith

Well-known Member
Joined
Aug 19, 2006
Messages
922
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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,053
Messages
6,122,882
Members
449,097
Latest member
dbomb1414

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