Forum Discussion

MichaelC765's avatar
MichaelC765
Copper Contributor
Aug 23, 2024
Solved

Conditional Formatting degrees

how do I get the condition to change color if a value is less than 90°? The formatting doesn't seem to recognize or understand the values in °.  
  • m_tarler's avatar
    m_tarler
    Aug 23, 2024
    You could use text to number tool each time or use a helper column that will strip the degree symbol and convert to number or use custom formula in conditional formatting like:
    =(--LEFT(K2,LEN(K2-1))<90
    or maybe
    =(--SUBSTITUTE(K2,"°",""))<90

Resources