# (solved) How to add users to a group or team

**URL:** https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351
**Category:** Questions about Thunkable X
**Tags:** solved
**Created:** [October 28, 2020, 2:29pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351 "2020-10-28T14:29:36Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![group7utwentez5](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@group7utwentez5](https://community.thunkable.com/u/group7utwentez5)
#### Post date: [October 28, 2020, 2:29pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/1 "2020-10-28T14:29:36Z")

</div>

I have to make an app for a school project. This app is supposed to be for a relay race. my question is how can I add users to a team/group and display all the people in this group in one of the screens.

---

<div class="post-metadata">

### Author: ![drted](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/drted/32/92694_2.png) [@drted](https://community.thunkable.com/u/drted)
#### Post date: [October 28, 2020, 3:09pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/2 "2020-10-28T15:09:36Z")

</div>

A few topics to explore:

1. Data Sources (Add, get)
2. Data list Viewer  
or you could use the realtime firebase db (which I find to be more reliable), but it a little ore difficult to understand.

Happy Thunking

---

<div class="post-metadata">

### Author: ![group7utwentez5](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@group7utwentez5](https://community.thunkable.com/u/group7utwentez5)
#### Post date: [October 28, 2020, 3:12pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/3 "2020-10-28T15:12:45Z")

</div>

can you explain a bit more on the firebase database?

---

<div class="post-metadata">

### Author: ![luv.ak.tech](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/luv.ak.tech/32/104896_2.png) [@luv.ak.tech](https://community.thunkable.com/u/luv.ak.tech)
#### Post date: [October 28, 2020, 5:45pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/4 "2020-10-28T17:45:56Z")

</div>

you can also do it with cloud variable

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [October 28, 2020, 5:51pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/5 "2020-10-28T17:51:46Z")

</div>

I could see several ways to do this. Can you describe the app a little more?

## Backend

In airtable, create 2 tables.

### Table 1 - “teams”

### Table 2 - “members”

## Screen 1

dashboard or some kind of entry point to the app  
Maybe an overview of the teams with info about the event?

## Screen 2

screen to register users  
When screen opens, get all team names from airtable and display in a list.

Users must choose their team then enter their names

Save entry in airtable ‘members” table with properties “name” and “team”

## Screen 3

Get all teams from airtable  
Display in a list  
User makes a choice and goes to screen 4

## Screen 4

screen to display all team memebers.  
Maybe click a member to see more info.

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 12:21pm UTC](https://community.thunkable.com/t/solved-how-to-add-users-to-a-group-or-team/936351/6 "2024-11-08T12:21:56Z")

</div>


