Hi everyone good morning. I am using a gallery with a check box and I have a checkbox outside the gallery that when checked, checks all the checkboxes inside the gallery as intended. However I have the following Collect formula when I check an individual checkbox inside the gallery.
Collect(
colAddTasks,
{
TaskItem: tiTaskTitle.Value,
StoreLocationNum: ThisItem.ActualStoreNumber,
StoreLocation: ThisItem.Location,
TaskStart:calTaskStartDate.Value
}
);
How can I check all the boxes with the single check box and still perform the collection?
Thanks!
Chris