Multiple criteria

phillipcook

Board Regular
Joined
Jun 25, 2015
Messages
87
Hi all.
I have the following formula:
=IF(F10=“YES”,SUM(E10-D10-25,IF(F10=“NO”,SUM(E10-D10),IF(F10=“”,””)))

What I am wanting to do is somehow in the first part as below, if the answer is a negative number then the answer will convert to 0 instead of the actual negative value.
=IF(F10=“YES”,SUM(E10-D10-25

Thanks in advance.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi all.
I have the following formula:
=IF(F10=“YES”,SUM(E10-D10-25,IF(F10=“NO”,SUM(E10-D10),IF(F10=“”,””)))

What I am wanting to do is somehow in the first part as below, if the answer is a negative number then the answer will convert to 0 instead of the actual negative value.
=IF(F10=“YES”,SUM(E10-D10-25

Thanks in advance.


Wrap the SUM part in a MAX function. You actually dont need the SUM functions in your formula if you use the plus or minus operators.

MAX(0, E10-D10-25)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,890
Messages
6,127,594
Members
449,386
Latest member
owais87

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