Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I'm working on a straight table and I'd like to change the title text color conditionally based on a measure result:
I couldn't find a native way to do this directly in the properties panel?
Thanks in advance! 🙂
doesn't seem to be possible at this time (may 2026)
if it's really a must have:
duplicate the table; set color green to table 1, color red to table 2
add them both to a tabbed container, and conditionnaly make one or the other visible depending on measure result.
I think it's a great idea, but with 30 tables it becomes impractical. Thank you for your reply 🙂
The solution I came up with was using icons.
=If(
Count({<[Measure]={">0"}>} [Measure]) > 0,
'🔴Fail',
'🟢Ok'
)