Hello all,
I have a sharepoint list with userid, username, createddate columns.
User will fill have option to fill survey each day, if he tries to fill survey multiple times in a day, fill survey button should be disabled.
I tried below on OnSelect of fill survey button:
If(CountRows(Filter(UserReport, DateDiff(CreatedDate, Now(), Days)=0))>0, Notify("Survey already submitted", NotificationType.Error, 1000), Navigate(SurveyQuestions);
The above is working for date part, but not able to check for the user. It just disabled for all users based on todays date.
Any idea how it can be done. Many thanks.