# Checkbox Value

**URL:** https://community.glideapps.com/t/checkbox-value/14442
**Category:** Ask for Help
**Created:** [August 22, 2020, 10:34pm UTC](https://community.glideapps.com/t/checkbox-value/14442 "2020-08-22T22:34:42Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![AugustoMiguel](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/augustomiguel/32/47516_2.png) [@AugustoMiguel](https://community.glideapps.com/u/AugustoMiguel)
#### Post date: [August 22, 2020, 10:34pm UTC](https://community.glideapps.com/t/checkbox-value/14442/1 "2020-08-22T22:34:42Z")

</div>

Hi there !!  
I need help with something that i can’t figure it out.  
1ª I have a Data base with all items

- In my app, when someone choose a type of beverage, a list will appear with that type.
- Till there is all working.
- This list is a checkbox list.

I want to get the checked value to my google sheet, where i store the orders from the cliente.  
And also to unchecked it after the order been sent.  
Is there a way to do it?

Thanks 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: [August 23, 2020, 1:15am UTC](https://community.glideapps.com/t/checkbox-value/14442/2 "2020-08-23T01:15:27Z")

</div>

So you want it to happen inside a form or not?

---

<div class="post-metadata">

### Author: ![AugustoMiguel](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/augustomiguel/32/47516_2.png) [@AugustoMiguel](https://community.glideapps.com/u/AugustoMiguel)
#### Post date: [August 23, 2020, 1:19am UTC](https://community.glideapps.com/t/checkbox-value/14442/3 "2020-08-23T01:19:09Z")

</div>

Thanks for the reply ThinhDinh.  
I want it to happen after i sent the data form the form.  
Is it possible to do it in this two ways (inside or out the form)?

---

<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: [August 23, 2020, 1:22am UTC](https://community.glideapps.com/t/checkbox-value/14442/4 "2020-08-23T01:22:36Z")

</div>

Here’s how I think you can do it outside of a form.

Have a choice component that writes to a user-specific column to store your type of beverage.

From a relation matching that user-specific choice to the types of beverages, show an inline list of the drinks in that list. Get a favorite button for each item.

Create a relation matching the favorite column to itself and return multiple matches, from that relation use a joined list column to take all the items the user has favorited.

Use a form to record that to your Sheet.

Admittedly I don’t know what your order flow is, but that’s what I would advise.

---

<div class="post-metadata">

### Author: ![AugustoMiguel](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/augustomiguel/32/47516_2.png) [@AugustoMiguel](https://community.glideapps.com/u/AugustoMiguel)
#### Post date: [August 23, 2020, 1:35am UTC](https://community.glideapps.com/t/checkbox-value/14442/5 "2020-08-23T01:35:36Z")

</div>

Ok. Thanks for the reply.  
I will try that.
