Re: Block users from accessing same screen more than once (sucesfully) on a day
Hello,
In one of my apps I wanted to do similar thing. Easiest way I found was something like that:
-In my menu, I added to onSelect :
If( IsEmpty( Filter( Status, Created >= Today(), Title = User().FullName ) ), Set( StatusCheck, true ), Set( StatusCheck, false )
Which basicly checks if given user added a record today ( Status is my sharepoint list DataSource, in Title I store user fullname, but you can use anything, as long as it is unique identifier).
-Then set form and button visibility to StatusCheck, then added label with visiblity !StatusCheck, which informed user that he already provided this info today.
If you need any futher explanation let me now 😉