# Add bulk data rows

**URL:** https://community.glideapps.com/t/add-bulk-data-rows/86127
**Category:** Ask for Help
**Created:** [January 24, 2026, 1:45am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127 "2026-01-24T01:45:36Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Hassan\_Nadeem](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/hassan_nadeem/32/72956_2.png) [@Hassan\_Nadeem](https://community.glideapps.com/u/Hassan_Nadeem)
#### Post date: [January 24, 2026, 1:45am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/1 "2026-01-24T01:45:36Z")

</div>

Hi everyone,

I have a Teams table and a Tournaments table.

I also have a Teams in Tournament table (Team ID + Tournament ID).

When I create a new Tournament, I want to automatically add multiple rows in Teams in Tournament. One row for each existing Team, all linked to the same Tournament ID.

I’m on the Maker plan. What’s the best and least costly way to do this? I wish to stick with Glide Tables but open to ways to do this on Big Tables as well.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [January 24, 2026, 7:21am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/2 "2026-01-24T07:21:04Z")

</div>

The cheapest option would be to drop the link table, and store an array of Team IDs in a single column in the Tournaments table (or vice versa).

---

<div class="post-metadata">

### Author: ![Hassan\_Nadeem](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/hassan_nadeem/32/72956_2.png) [@Hassan\_Nadeem](https://community.glideapps.com/u/Hassan_Nadeem)
#### Post date: [January 24, 2026, 8:33am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/3 "2026-01-24T08:33:33Z")

</div>

Do you have any tutorial by any chance? 😊

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [January 24, 2026, 1:23pm UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/4 "2026-01-24T13:23:34Z")

</div>

I don’t, but I’m pretty sure Bob did one a while back.  
It’s basically a variation of the old Trebuchet method, but instead of using Joined Lists, you use arrays.

---

<div class="post-metadata">

### Author: ![Hassan\_Nadeem](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/hassan_nadeem/32/72956_2.png) [@Hassan\_Nadeem](https://community.glideapps.com/u/Hassan_Nadeem)
#### Post date: [January 24, 2026, 2:04pm UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/5 "2026-01-24T14:04:55Z")

</div>

I tried doing it through Manual Triggers but it was consuming 1 update per row and was taking about 5 - 10 seconds for adding 50 rows. I’m not sure if that’s the easiest approach or there’s something I am missing.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [January 26, 2026, 12:07am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/6 "2026-01-26T00:07:50Z")

</div>

What’s the logic you are using to have the list of teams to automatically add to a tournament? If it’s the same set of teams it can be just fed into the add form, or the add row action.

If it involves logic, I assume you can still calculate that list of teams in advance.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [January 26, 2026, 12:08am UTC](https://community.glideapps.com/t/add-bulk-data-rows/86127/7 "2026-01-26T00:08:47Z")

</div>

That also assumes you don’t need to store each team’s data in a tournament, and this is only for participation logging purposes.
