Database

I have checked out the help topics - but i cannot find the answer. I know you can hide columns in the database but can we hide rows? I have a couple of clients that don’t always want to display everything.
TIA for the help.

Hiding a column is defined in the database screen, or defined by the component as which columns to display. However, hiding a row would be done in code or a query. You could add a column to the database that indicates if the row is to be displayed or hidden.

For example, add a column called hide . If the value of that column for a specific row is true , then the row will not be displayed.

I hope that helps.

Yisrael

Thanks, I’ll give it a try