Forum Discussion

Alex Martinez's avatar
Alex Martinez
Copper Contributor
Mar 02, 2018
Solved

SUMIF help

I need to create a formula where IF the sum of a range of cells exceeds a certain amount, THEN i need the sum of that range MINUS that certain amount.  (in other words, if the total of the range of c...
  • SergeiBaklan's avatar
    Mar 02, 2018

    Could be like

    =IF(SUM()>10000,SUM()-10000,0)