Hello,
I'm looking for a logic to avoid / to add duplicate entries into PowerApps form
For Example: I have below 5 field within the form:
- StartDate
- EmployeeID
- Name
- Email
- Department
I have used a Concatenate function to combine all of the above 5 fields into one string field. This field is called Check
Within my form, I already have below entry added:
| StartDate |
EmployeeID |
Name |
Email |
Department |
Check |
| 12/2/2025 |
E5252 |
Prem |
Prem@abc.com |
Accounts |
12/2/2025E5252PremPrem@abc.comAccounts |
Now when the users clicks on New button to add a new record and if the user is adding same level of information as in above screenshot / table, we should get a pop-up that this record already exists and within this pop-up window show a cancel button, so that this records cannot be saved
But when the StartDate is different from the above and rest of the information is same, allow the users to create a new record, without any pop-up.
EmployeeID, Name, Email and Department can be same most of the time for multiple entries. Only the change will be in StartDate.
This Logic should work on Check field column.
Please advise. Thanks!