Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
We have columnA, columnB, column C, columnD. the formula is D=A-B-C.
D must be above at least zero. In case the result is below 0, i need to convert the value obtained to 0. in case it's above zero, it should remain so. Thank you. |
#2
![]() |
|||
|
|||
![]()
One way,
=IF(A1-B1-C1<0,0,A1-B1-C1) HTH, Paul "Balder" wrote in message ... We have columnA, columnB, column C, columnD. the formula is D=A-B-C. D must be above at least zero. In case the result is below 0, i need to convert the value obtained to 0. in case it's above zero, it should remain so. Thank you. |
#3
![]() |
|||
|
|||
![]()
=MAX(0,A-B-C)
-- HTH RP (remove nothere from the email address if mailing direct) "Balder" wrote in message ... We have columnA, columnB, column C, columnD. the formula is D=A-B-C. D must be above at least zero. In case the result is below 0, i need to convert the value obtained to 0. in case it's above zero, it should remain so. Thank you. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to create a variable column in cell reference | Excel Worksheet Functions | |||
How can I get a cell locked if the condition is false? | Excel Worksheet Functions | |||
Can a Formula in Cell X modify Cell Y? | Excel Discussion (Misc queries) | |||
inserting data from a row to a cell, when the row number is specified by a formula in a cell | New Users to Excel | |||
VLookup resulting in a blank cell... | Excel Worksheet Functions |