Forum Discussion

Luggruff's avatar
Luggruff
Copper Contributor
May 21, 2020
Solved

Conditional format cells in spilled ranges as formulas

Hi!   I recently learned that I can conditionally format a range by using the formula =ISFORMULA(topLeftCellOfRange), though, I also then learned it doesn't work on spilled ranges, like when spilli...
  • SergeiBaklan's avatar
    May 21, 2020

    Luggruff 

    Your formula doesn't make the cell blank, it returns empty string. So far in Excel formulas don't return blank as a value.

     

    Thus if the purpose is to color all cells with any value, includes empty string, you may apply rule like

    =ISTEXT(N5) + (LEN(N5)>0)

     

Resources