
Announcements
Dear all:
I am working on power apps with sharepoint list.
I would like to update one column and keep others for sharepoint list, so i using updateif to do so.
If i set updateIf( list1, Level <> 0 , { Comments: ""}) as button onselect.
It is working, but it need cost 15 seconds to finish it.
It is so slow for me.
Would you please tell me how to solve this issue or use other function to do so?
Thanks a lot:)
Hi @Jackywei_BDF ,
I am not how much quicker (if at all) this will be, but try
With(
{
wPatch:
Filter(
list1,
Level <> 0
)
},
Patch(
list1,
ForAll(
wPatch As aPatch,
{
ID: aPatch.ID,
Comments: ""
}
)
)
)
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.
Visit my blog Practical Power Apps