Limiting number of rows

Hello,

I have a table and a user should only be allowed to enter 30 entries, and if they want to add more they need to delete old ones first.

Is there any way to limit the number of rows a user can enter?

Thanks,
Stephen

Solved Solved
1 2 318
1 ACCEPTED SOLUTION

Use this for a valid_If in a column
COUNT(Select(TableName[RowName],[CreatedBy]=UserEmail())) <=30

Tablename[CreatedBy] Should have a initial value of UserEmail()

Simon@1minManager.com

View solution in original post

2 REPLIES 2

Use this for a valid_If in a column
COUNT(Select(TableName[RowName],[CreatedBy]=UserEmail())) <=30

Tablename[CreatedBy] Should have a initial value of UserEmail()

Simon@1minManager.com

Thank you Simon. That worked great.

Top Labels in this Space