Conditional Styling on a Button

I was hoping someone could provide an example how to conditionally style a button based on the value of data in the "Status" column of this table.
image
If the status column is equal to "called" then set the conditional style. Button 1 is equal to Bus 1.


I wish to Grey out the button 1 when the button is pushed.

Hi @Davi-7079, you could use a conditional styling expression such as this:
=FILTER(BusTable,"BusTable[Bus]=%",1)[Status]="Called"

And then have an automation tied to each button as well, like this:

The end result is kinda neat:

Hope this helps!

Perfect, thanks for this example

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.