Checkbox list as list of attendance?

HI GUYS!
I try to make a quick list of attendance, in a given group of people, via chebox list. Is it possible to create such a list and after clicking on the name, the checkbox changes to true, at the same time assigning to the user the current date and time ? Thanks in advance



You can use the helper table approach or the user table to write the group name to the ITE column. Then use the single value in the destination table to pull the input value from the user table. In the Group table you need to add a group column. Then in the collection component, you just need to filter to filter the list by the user-selected group name and the group column.

Additionally you need a boolean column to hold the checked values ​​which I don’t see in your table.

Your goal can be achieved with custom action → set column value.
But I suggest to disable the checkbox with css. Otherwise, your custom action will only get a check mark without timestamp if your user clicks on the checkbox area.

1 Like

OK, thank You! I will try this solution :wink:

So your flow is to click through each professional/beginner group/advanced and then check for attendance in each of those rows?

You can use the emojis to mimic a checkbox.

:white_check_mark:

Then assign an action that both populates a boolean column, and a timestamp to the row.

Himaladin’s comment seems to suggest you haven’t had a relation between the Groups table and the Users table, but if you have done so, you can just display a Collection using your relation.

For the “reverse” way, clear both the boolean and the timestamp column.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.