Forum Discussion

Jonathan155's avatar
Jonathan155
Copper Contributor
Sep 13, 2024

How to return zero/empty value in an IF-formula from a cell with only a formula (no result)?

I would like the marked cell to come up empty when copying the formula to empty rows... what is wrong with the formula?    All help is appreciated!
  • SergeiBaklan's avatar
    SergeiBaklan
    Sep 13, 2024

    Jonathan155 

    Since formula in column I returns empty string if nothing is found, you need to compare with empty string as well. In English notation

    =IF( I15="", "", IF(I15>=7, "JA", "NEI" ) )
    

    That works for blank cells as well.

Resources