Conditional Sum Formula

typewriterguy

New Member
Joined
Oct 29, 2008
Messages
24
Looking for help with another conditional sum formula.

When either AL6 or AM6 have a value that is not zero or null, I want the formula to sum AJ6, AL6, AM6.

When both AL6 and AM6 have a null/zero value, I want the formula to return a value of "-".

Desired results
AJ6: Original value = 500
AL6: Change1 value = <NULL>
AM6: Change2 value = 50
AP6: Formula <FORMULA>desired result = 550

AJ6: Original value = 500
AL6: Change1 value = <NULL>
AM6: Change2 value = <NULL>
AP6: Formula <FORMULA>desired result= "-"

I tried =IF((AL6,AN6),SUM(AJ6,AL6,AN6),"-"), but it returned a #VALUE message.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
If AL6 and AM6 are not null, you sum AJ6 AL6 AM6 (if theyre zero it wont affect the sum)

Try
=IF(AND(OR(AL6=0,AL6=""),OR(AM6=0,AM6="")),"-",IF(AND(AL6<>"",AM6<>""),SUM(AJ6,AL6,AM6)))
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,291
Members
448,564
Latest member
ED38

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