I have this beastmode formula going right now:
CASE
WHEN SUM(`Real Time`) <= `Today Goal` THEN
concat('<div style="background-color:red; color:white; margin:-20px; padding:20px">',SUM(`Real Time`),'</div>')
ELSE
concat('<div style="background-color:green; color:white; margin:-20px; padding:20px">',SUM(`Real Time`),'</div>')
END
--
This is not working! I feel like its pretty straight forward but its not changing the background color or font color. Does anyone know of a sure fire way to change a cell color based on the value of another cell or how to fix mine so it'll work? I'm in a mega table if that makes a difference.