# Favorites

**URL:** https://community.glideapps.com/t/favorites/5082
**Category:** Ask for Help
**Created:** [March 2, 2020, 7:52am UTC](https://community.glideapps.com/t/favorites/5082 "2020-03-02T07:52:39Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Kwesi](https://avatars.discourse-cdn.com/v4/letter/k/d6d6ee/32.png) [@Kwesi](https://community.glideapps.com/u/Kwesi)
#### Post date: [March 2, 2020, 7:52am UTC](https://community.glideapps.com/t/favorites/5082/1 "2020-03-02T07:52:39Z")

</div>

Question. Since multiple components can’t write to the same column in sheets (which would be dope to have), I’ve used favorites instead.

The only issue is, where is all the data for favorites being stored? And is there a way to create a google sheet to house that data for each relevant user?

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [March 2, 2020, 1:22pm UTC](https://community.glideapps.com/t/favorites/5082/2 "2020-03-02T13:22:22Z")

</div>

Can you explain what you mean by having multiple components writing to the same column? Multiple components can write to the same column, but the last one mostly will win. I have a single value that I set from either a text entry component or a choice component. If you are talking about multiple users writing to a single column cell, then there is a User Specific Data column in staging, but I highly doubt it would write the results to the spreadsheet.

Favorites are stored internally by Glide. There have been requests for access to favorites and there is an active request in:

> **[Feature Requests](https://features.staging.glideapp.io/)**
>
> Feature requests for Glide Apps

---

<div class="post-metadata">

### Author: ![Kwesi](https://avatars.discourse-cdn.com/v4/letter/k/d6d6ee/32.png) [@Kwesi](https://community.glideapps.com/u/Kwesi)
#### Post date: [March 2, 2020, 9:22pm UTC](https://community.glideapps.com/t/favorites/5082/3 "2020-03-02T21:22:56Z")

</div>

Thanks for you’re response!

So the example of multiple components writing to the same colomn is in the following use case:

Say I want a user to select a choice. Yet I want to give them the option of selecting more than one choice. If I add another choice component, I want to direct its input to the same cell in a specific sheet relative to that user(ideally, separated by a comma for each choice).

Essentially, is there another option for “multi-select component” instead of adding a copy of the same choice component and routing it to the same cell?

Definitely would love to have access to the favorites data or for it to be stored to a connect sheet, similar to the AutoLogin sheet. Hope to see it soon.

~cheers

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [March 2, 2020, 9:48pm UTC](https://community.glideapps.com/t/favorites/5082/4 "2020-03-02T21:48:15Z")

</div>

There isn’t a true multi-select, at least not yet. What I would do is create multiple components that write to separate columns. Then use a template column to join them all together. The only problem is you could end up with multiple commas grouped together if there are gaps between the selected items. You could get around this by using a series of if then columns and template columns. Or you could use an arrayformula in the sheet with if’s to join everything together.

---

<div class="post-metadata">

### Author: ![Kwesi](https://avatars.discourse-cdn.com/v4/letter/k/d6d6ee/32.png) [@Kwesi](https://community.glideapps.com/u/Kwesi)
#### Post date: [March 2, 2020, 10:26pm UTC](https://community.glideapps.com/t/favorites/5082/5 "2020-03-02T22:26:40Z")

</div>

I figured an arrayformula from sheets was the only other way. Great idea to activate template columns for now at least. Thanks Jeff!

---

<div class="post-metadata">

### Author: ![Food2Soil](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/food2soil/32/659_2.png) [@Food2Soil](https://community.glideapps.com/u/Food2Soil)
#### Post date: [October 27, 2022, 4:48pm UTC](https://community.glideapps.com/t/favorites/5082/6 "2022-10-27T16:48:20Z")

</div>

Checking to see if there is an update on accessing the favorites data. I want to create a component where users can see who else has ‘favorited’ that particular item. How do I store that info in a column somewhere in the Glide Table?

---

<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: [October 28, 2022, 1:17am UTC](https://community.glideapps.com/t/favorites/5082/7 "2022-10-28T01:17:36Z")

</div>

You would have to create your own favorite flow, I think basically using the trebuchet method to store a list of userIDs that has favorited an item.

> [@\[Advanced\] Trebuchet Method link - List of Items/users in one cell!](https://community.glideapps.com/t/advanced-trebuchet-method-list-of-items-users-in-one-cell/25688):
>
> #1 - Learn how to implement the method in your app. #2 - Learn how to remove an item from an array. star Trebuchet Method works in public & public with email apps! COPY THE APP FOR FREE Points of attention: We gotta pay attention in the minimal details because in almost every time we’re adding informations to another place, and all the columns must have values in every row (like tamplate, IFE, join list, split list), so when we click, our “current” row pick the …
