Forum Discussion

Courtney93's avatar
Courtney93
Copper Contributor
Aug 30, 2021
Solved

IF function when reference cell is a blank Cell with Formula

I have attached a screen shot of my spreadsheet.   I feel like this is a simple problem but it is driving me crazy!    In Cell G11 I have the formula =IF(F11>40,F11-40,"0")  The value of cell F1...
  • HansVogelaar's avatar
    Aug 30, 2021

    Courtney93 

    Use 0 instead of "0" in the formulas. You can use the MAX function instead of an IF formula:

    In F11: =MAX(SUM(F4:F10),0)

    In G11: =MAX(F11-40,0)

Resources