Re: checklist in table with desired number of table rows
hi @dogbural
I hope i do get the question right, lets see; lets create a check list with 5 rows
Add a textinput, button, gallery and a checkbox
set the button to create the 'checklist' OnSelect to the code below. with sequence the collection will contain the total rows you specify (you can leave out the id, its just my way of doing thing to have an index)
ClearCollect(
colCheckList,
ForAll(
Sequence(
Value(TextInput4.Text),
1
),
{id: Value}
)
)
Set the gallery Item = colChecklList
Add three checkboxes to your gallery

Now when you click the button it will create that list you wanted.
Let add 5 rows and click the button
no rows selected:

5 rows selected

each "cell" act on its own

hope this adds some light