Is there any way to limit the row to 10 per user in the data table?

Is there a way to limit the row to 10 per user using Glide’s own data table without using Google Sheets?

If the user adds a row, I ask if it is possible to delete the old row first.

Yes. Use a query or multiple relation plus a rollup column to determine how many rows have already been added, then add a condition to your Add action to only allow if the total is less than or equal to 10.

Yes, you could do that also.
You could use a single value column to fetch the RowID of the first record added by the User, use that RowID value to create a Single Relation, and then delete the row via that relation.

1 Like

thank you for your answer. it’s solved!!! thanks you x 100

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.