Multiple IF & Sum formula

jlyn123

New Member
Joined
Jan 24, 2018
Messages
48
Office Version
  1. 2016
Hello,

I am trying to get the below formula to calculate an amount but I am getting a #VALUE error.

I need both of the highlighted portion of the formula to work and then sum anything in the rest of the columns.

1718832108413.png
Any help would be greatly appreciated.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Screen Shot 2024-06-19 at 6.15.13 PM.png

As far as I can tell, this part is missing the num_digits parameter.
 
Upvote 0
View attachment 112959
As far as I can tell, this part is missing the num_digits parameter.
Thanks.

Now I am having issues with the below. Its returning FALSE which I know I need to enter an option for if the statement isnt true but I cant seem to get it to work in the formula. If false just want to return 0.

=IF(AND(X8>0.01,Q8>0.01),((Q8*X8*S8/100)+(SUM(Y8:Z8)*S8*Q8/100)),IF(AND(J8="No",Q8>0.01),((Q8/100*U8*S8)+(W8*R8/100)),IF(AND(V8>0.01,Q8>0.01),((Q8/100*((V8+SUM(Y8:Z8))*S8+(W8*R8/100)))))))
 
Upvote 0
Maybe this.
Excel Formula:
=IF(AND(X8>0.01,Q8>0.01),(Q8*X8*S8/100)+(SUM(Y8:Z8)*S8*Q8/100),
    IF(AND(J8="No",Q8>0.01),(Q8/100*U8*S8)+(W8*R8/100),
       IF(AND(V8>0.01,Q8>0.01),((Q8/100*((V8+SUM(Y8:Z8))*S8+(W8*R8/100)))),
         0)))
 
Upvote 0

Forum statistics

Threads
1,221,501
Messages
6,160,177
Members
451,629
Latest member
MNexcelguy19

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