Forum Discussion
DRae1005
May 14, 2024Copper Contributor
Insurance spreadsheet
Hi I am trying to get the spreadsheet to give a sum of zero in the cell if the formula sums to a negative number or keep the positive number if it is greater than 0. I am solving for how much the i...
dscheikey
May 31, 2024Bronze Contributor
With MAX() you can prevent negative results from being displayed or that the result is zero.
For example:
=MAX(0,J9-J22-J24)
See also the enclosed example.