Forum Discussion
Luggruff
May 21, 2020Copper Contributor
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
May 21, 2020Diamond Contributor
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)