I want the items in the sharepoint list for that specific user to be deleted when the submit button is pressed. I have a statement identical to this in another app and it works perfectly Remove('CPQ Radio', Filter('CPQ Radio', 'Created By'.Email = varUserEmail)). This one is using radio buttons. I just want the sharepoint list to always have the most recent data from that user.
Solved! Go to Solution.
Hi @powerapps890 :
Could you tell me:
I assume varUserEmail is a user's email address.
Firstly,this formula cannot be delegated.
In order to avoid delegation issues as much as possible, I suggest you adjust the value of data row limit for non-delegable queries to 2000.
Secondly,'Created By'.Email can not be used as a string.
I did a similar test and the following error occurred:
Finally,please try:
Remove('CPQ Radio', Filter('CPQ Radio', varUserEmail in 'Created By'.Claims ))
Or
Remove('CPQ Radio', Filter('CPQ Radio',"i:0#.f|membership|"&varUserEmail = 'Created By'.Claims ))
Best Regards,
Bof
It is outside of the gallery. It is the button that patches all the selected radio buttons answers which I need to remove with each new submission. @Drrickryp
Hi @powerapps890 :
Could you tell me:
I assume varUserEmail is a user's email address.
Firstly,this formula cannot be delegated.
In order to avoid delegation issues as much as possible, I suggest you adjust the value of data row limit for non-delegable queries to 2000.
Secondly,'Created By'.Email can not be used as a string.
I did a similar test and the following error occurred:
Finally,please try:
Remove('CPQ Radio', Filter('CPQ Radio', varUserEmail in 'Created By'.Claims ))
Or
Remove('CPQ Radio', Filter('CPQ Radio',"i:0#.f|membership|"&varUserEmail = 'Created By'.Claims ))
Best Regards,
Bof
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
262 | |
252 | |
85 | |
37 | |
33 |
User | Count |
---|---|
342 | |
264 | |
129 | |
68 | |
46 |