Hide Category from a Table

Hi everyone,

Let's say I have this table:

How can hide all the results that have as category "fintech"?
I tried using the filter at the bottom of the table, but I would like to obtain a permanent result that could not be modified by any users.

Thanks

In the query you are running to populate that table, are you able to select where category != 'fintech'
Also, you can hide the filter button using the Inspect panel.
If you cannot adjust your query, you can use a transformer on the result of the query itself.

1 Like

Thank you!