# Adding data for one-to-many connection fields with Make

**URL:** https://forums.knack.com/t/adding-data-for-one-to-many-connection-fields-with-make/18055
**Category:** Get Answers
**Created:** [October 17, 2024, 2:16pm UTC](https://forums.knack.com/t/adding-data-for-one-to-many-connection-fields-with-make/18055 "2024-10-17T14:16:19Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Wes](https://avatars.discourse-cdn.com/v4/letter/w/e9c0ed/32.png) [@Wes](https://forums.knack.com/u/Wes)
#### Post date: [October 17, 2024, 2:16pm UTC](https://forums.knack.com/t/adding-data-for-one-to-many-connection-fields-with-make/18055/1 "2024-10-17T14:16:19Z")

</div>

I have a table containing group counseling sessions for my company’s inpatient residents. This table contains a connection field called “Residents”–those who attended the group session–which has a one-to-many relationship with the table containing those residents.

I am trying to update a group session through Make to add multiple residents to that field, but I can’t figure out how. I have the array containing each resident’s UUID, but trying to map that array directly to the “Residents” fields gives me an error, saying the array can’t be converted to text.

Otherwise, all of what I’ve tried with text transformers has only led to the first UUID being entered.

What is the correct way to do this? Maybe loop over the UUID’s and put them all into a string variable module to send over? Thank you!

---

<div class="post-metadata">

### Author: ![Hugo](https://sea2.discourse-cdn.com/flex020/user_avatar/forums.knack.com/hugo/32/4068_2.png) [@Hugo](https://forums.knack.com/u/Hugo)
#### Post date: [October 30, 2024, 3:50pm UTC](https://forums.knack.com/t/adding-data-for-one-to-many-connection-fields-with-make/18055/2 "2024-10-30T15:50:53Z")

</div>

Hi Wes,

you need to set the values as a comma separated array (I use a text aggregator for that):

 ![image](https://us1.discourse-cdn.com/flex020/uploads/knack/original/2X/0/0b7a7c1f2c72d355aebb4e8a0360f6bca224602d.png)

Then the split function to set the IDs.

 ![image](https://us1.discourse-cdn.com/flex020/uploads/knack/original/2X/1/12743ee934b193111c67e8c49988814a370501cb.png)

Hope that helps!

---

<div class="post-metadata">

### Author: ![Wes](https://avatars.discourse-cdn.com/v4/letter/w/e9c0ed/32.png) [@Wes](https://forums.knack.com/u/Wes)
#### Post date: [November 21, 2024, 4:13pm UTC](https://forums.knack.com/t/adding-data-for-one-to-many-connection-fields-with-make/18055/3 "2024-11-21T16:13:04Z")

</div>

Thank you. Sorry for the late reply. I eventually figured out that it could be accomplished using the Table Aggregator with the default settings as well.
