Dear Power Appers,
I have my first App ready and some users have already tried to play with it. Then I ran into a problem with duplicated entries from same user.
The user did not realize that he already entered the same information before. For example, the user is supposed to input their travel expenses for each month. One of them entered and saved his expenses in July twice.
I want to build a 'check' function when user press submit button. To check whether the current user has already saved data based on the Year and month. In the app, user is supposed to type in their email address, year, month and expense. If same year and month for the same user already exist, then a pop-up window will show and state " Entry already exists. ".
I already knew how to set up the pop-up message. By setting the OnSelect property for 'Submit Button' with
Notify("Entry already exists."), SubmitForm(EditForm1))
How can I realize this 'check' function?
Best regards,
exploringG