Filtering table on manufactured data

Hey Retoolers!

I'm trying to filter the following table by the column done. Its values are either true or false.

This is the setup of the column:
Screenshot 2024-07-09 at 2.26.48 PM

Judging by the state of the selectedRow it looks as though the field does indeed contain the right data to filter off.
Screenshot 2024-07-09 at 2.28.23 PM

However, when I apply a default filter to the table it just shows as blank. But if I apply the filter within the table it works...?


Help would be much appreciated! If all this fails, I'll filter on the backend instead.

Any thoughts?

Try using the "=" operator instead of is, which I believe is intended for values like NULL not NULL.

Interesting though that within the filter it works...

Hi @casey_hemingway, they should both be evaluating to the label:

Case #1:

Case #2:

I wonder if the discrepancy is coming from the Mapped Value:
Screenshot 2024-07-09 at 2.26.48 PM

item should be evaluating to the column's value (true or false). Try changing this to {{ item ? 'yes' : 'no' }} (adjust to your tag needs).