Forum Discussion

billh55's avatar
billh55
Copper Contributor
Feb 24, 2022
Solved

how to make a formula apply only when the number is negative

I want to add a number from cells when negative, to another cell already populated with a positive number\This is for monthly target bonus. If one month is negative in column of target achieved, then...
  • Wildecoyote1966's avatar
    Wildecoyote1966
    Feb 24, 2022
    =if(E12<0,D4-E12,D4)

    if Cell E12 is less than 0 then Cell D4 (cell with new month figure you want to add to)-E12 (minus negative figure in E12) otherwise D4
    E12 = -6
    D4 = 510 (value for new month you want to add to E12)
    you would get 510 - -6 = 516

    E12 = 6
    you'd get 510

Resources