Hello, I am delegating a SharePoint list using a Power Automate flow then returning the tasks that are assigned to the current user to the PowerApp. Currently the string only gets added under the "Value" column in my collection as seen in the image.
I use the following code on my OnStart
Collect(colMyTasks, Tasks);
Clear(colMyTasks);
ForAll(TrimEnds(Split(UserTaskResult.usertaskresult, ";")), Collect(colMyTasks, Value))
Does anyone know what I am doing wrong?
TIA