Add function to hide a row when clicking a control button

Is there already a way to hide a row when clicking a button? If so, can anyone help me out? Thanks!

You can add a column called “Hidden” which is a checkbox.
Filter your table by the hidden column’s “unchecked” state.
Then create a button “Hide me” to check [thisRow].Hidden = true

I would also suggest making a button outside of the table that does:
Modify Rows > Table > All Rows > Hidden = false.

4 Likes

Brilliant! Thank you Joshua.