Hello,
I have an edit form connected with CDS Entity where one of the text fields needs to be validated for the duplicated value.
How can I check duplication of the field value of CDS entity for more than 2000 records?
Thanks,
Solved! Go to Solution.
Hi @dave8 ,
If you are looking to see if a text field in a particular record has a duplicate and want to avoid any Delegation Warnings, you could do this
With(
{
wDup:
LookUp(
YourListName,
YourTextFieldName=YourTextControlName.Text,
YourTextFieldName
)
},
If(
!IsBlank(wDup),
Notify("Duplicate record")
)
)
If however you are looking for any duplicates, I have done a blog on Delegation listing some options for large collection that would possibly do the job. Happy to elaborate further if this is what you are trying to do.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @dave8 ,
If you are looking to see if a text field in a particular record has a duplicate and want to avoid any Delegation Warnings, you could do this
With(
{
wDup:
LookUp(
YourListName,
YourTextFieldName=YourTextControlName.Text,
YourTextFieldName
)
},
If(
!IsBlank(wDup),
Notify("Duplicate record")
)
)
If however you are looking for any duplicates, I have done a blog on Delegation listing some options for large collection that would possibly do the job. Happy to elaborate further if this is what you are trying to do.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
203 | |
183 | |
71 | |
43 | |
34 |
User | Count |
---|---|
338 | |
271 | |
117 | |
67 | |
66 |