Hello,
I can't work this one out:

So the current setup is a gallery recalling a Excel table. There is a hidden label (MTGTF) that recalls a text value from an Excel column Completed which is hidden. The text value is either True/False.
The check boxes then reads the hidden label and updates as:
If(MTGTF.Text = "True", true, false)
But I want this to be interactable and able to patch the tick as TRUE and a lack of tick as false as it's a task/timetable complete app.
My current OnSubmit code is:
Patch(Timetable,
ForAll(Filter(Gallery2.AllItems, MTGCheck.Value),
{
Completed: If(MTGCheck.Value = true, "TRUE", false, "False")
}
)
)
Thanks!