Button to return user with date stamp

No worries, it happens :wink: !

Well, It took me some time to get to a workable solution but I must say that filtering a table with a button is quite less efficient than using interactive filters :slight_smile:.

But, here it is :wink:

I found inspiration in this post to get there.

So, I had to add a checkbox field in your example table and a single select control on the canvas to choose the number you want to filter your table by.
After that just click on the button “Filter”.

Technically, the button doesn’t filter the table, it just checks the appropriate checkboxes. Then the table filters those checkboxes afterwards by using the values in the formula I put on the canvas under “Filtered results” :wink: with this formula :

If([Filtered results]=0,thisRow.Checkbox=false,If([Filtered results]>=1,thisRow.Checkbox=true,""))

I’ve added a button to clear the checkboxes, so you can “un-filter” your table too and it will go back to its orignal state :blush: