Group teams together

  • Create a Groups table that has just a single column with one row for each group
  • In that table, create a multiple relation column that matches the group name to the group name in your Users table
  • Build a screen on top of your groups table.
  • Set the filter to be “group name is user profile → group name”. This will ensure that each user lands on the correct screen once they sign in. Assuming of course that you have user profiles correctly configured.
  • To show a list of users for the group use an inline list or collection component and set the source as the multiple relation column created in step 2.

That could be done as an action when groups are edited/updated.

1 Like