# Append a value to a column

**URL:** https://community.glideapps.com/t/append-a-value-to-a-column/25977
**Category:** Ask for Help
**Created:** [April 24, 2021, 4:35am UTC](https://community.glideapps.com/t/append-a-value-to-a-column/25977 "2021-04-24T04:35:24Z")
**Posts on this page:** 1
**Showing post:** 10

<div class="post-metadata">

### Author: ![justinjmp](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/justinjmp/32/43205_2.png) [@justinjmp](https://community.glideapps.com/u/justinjmp)
#### Post date: [November 30, 2022, 12:35am UTC](https://community.glideapps.com/t/append-a-value-to-a-column/25977/10 "2022-11-30T00:35:09Z")

</div>

Wanted to add to this thread as it was helpful in creating an append column in a slightly different way.

Problem: I wanted to create a form where a response would append to a particular column rather than create a new row or be added to a seperate column. All within Glide because I like Glide 🙂 .

Solution:

To append these values I first set the following User Specific Columns

1. A column to store text to be added when a response is submitted. (_Text Add_)
2. A column to store text that would store all of the text from collected responses. (_All Text_)
3. A column to store the text that the Text Add values would be appended to. (_Append Text_)

Then used a custom action to:

1. Set _Append Text_ with the value in _All Text_
2. Then clear the value in _Text Add_ so that it would be available for next use

To append text the “Append Array” function column was used. To facilitate the adds an array column was created with the value of _Text Add_ using a lookup column. Then an array was created to house the value _Append Text._ Then the Append Array function column was used to append the value of _Text Add_ to _Append Text_.

Afterwards made a few changes for formatting and boom! A form submission that appends values to a User Specific column, which can then be saved to data a la custom form functionality. [How do I create a custom form?](https://community.glideapps.com/t/how-do-i-create-a-custom-form/25014)

---

_[View the full topic](https://community.glideapps.com/t/append-a-value-to-a-column/25977)._
