Hi All,
I'll put context to the problem I am encountering. I am developing an application to onboard users to the company. I have the record of the user onboarding, and a relation of One-To-Many with the tasks associated with that onboarding.
So I have two galleries:
- Gallery 1: shows the list of the next onboardings.
- Gallery 2: shows the list of the tasks associated with the selected onboarding of Gallery 1.
In Gallery 1 I have a "Start" button that should modify the status of the Tasks in Gallery 2 from not started to Started.
The formula of that button:
ForAll(RenameColumns('User tasks';"cr6cc_task";"RenamedTask"); Patch('User tasks'; LookUp('User tasks'; RenamedTask = Task);{Selected: true}))
I have seen the following video: https://www.youtube.com/watch?v=0xZ4fMJbLvk
and around the minute 22 he uses the same formula. It works for him, but the above formula doesn't work for me. Have the LookUp or ForAll lately?
I upload a photo to make things clearer.

Thanks in advance.