Hi All,
I've a single line of text in backend. and I'm trying to concatenate & patch the checkbox selections into the column. Below is my formula, not sure where I'm going wrong, the values weren't saving at all.
ForAll(
Gallery1.AllItems As X,
With(
{
cakeName: X.Label2.Text,
ingredients: Concat(
Filter(
Gallery3.AllItems As Z,
Checkbox2.Value
),
Checkbox2.Text & ";"
)
},
Patch(
'Ingredients Data',
Defaults('Ingredients Data'),
{
'Cake Name': cakeName,
Ingredients: ingredients
}
)
)
);