Hello! 🤕
I am having a rather difficult time in patching my SharePoint.
I've managed to insert multiple columns in 1 gallery list with check box.
Using this Formula:
"""Filter(Split(Concat(Filter('Loto Isolation Form', 'Form Number ' =Dropdown2.SelectedText.Value),
If(!IsBlank('Item 1'), 'Item 1', Blank()) & "," &
If(!IsBlank('Item 2'), 'Item 2', Blank()) & "," &
If(!IsBlank('Item 3'), 'Item 3', Blank()) & "," &
If(!IsBlank('Item 4'), 'Item 4', Blank()) & "," &
If(!IsBlank('Item 5'), 'Item 5', Blank()) & "," &
If(!IsBlank('Item 6'), 'Item 6', Blank()) & "," &
If(!IsBlank('Item 7'), 'Item 7', Blank()) & "," &
If(!IsBlank('Item 8'), 'Item 8', Blank()) & "," &
If(!IsBlank('Item 9'), 'Item 9', Blank()) & ","),","),
!IsBlank(Result))"""
Now, the problem is, I don't know how to patch fields in multiple columns while using checkbox as a confirmation.

Item 1 Checkbox have to patch DeIsolation 1, Item 2 Checkbox have to patch DeIsolation2, and so on till Item 9.
Deisolation1 to 9 are different columns.