# How do I make products that I have saved as favorites appear when a specific person logs in?

**URL:** https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503
**Category:** Ask for Help
**Created:** [December 8, 2023, 11:19am UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503 "2023-12-08T11:19:31Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![\_ffwpu](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/_ffwpu/32/16380_2.png) [@\_ffwpu](https://community.glideapps.com/u/_ffwpu)
#### Post date: [December 8, 2023, 11:19am UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/1 "2023-12-08T11:19:31Z")

</div>

How do I log in with one account and collect products as favorites so that when a specific person logs in, they can see the products that I have collected?

---

<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: [December 8, 2023, 11:28am UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/2 "2023-12-08T11:28:00Z")

</div>

Add a user specific Boolean column to your Products table. When a user wants to favourite a product, set that column to true. Use it as a filter.

---

<div class="post-metadata">

### Author: ![\_ffwpu](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/_ffwpu/32/16380_2.png) [@\_ffwpu](https://community.glideapps.com/u/_ffwpu)
#### Post date: [December 8, 2023, 12:20pm UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/3 "2023-12-08T12:20:25Z")

</div>

I understand a bit, but are there any images, videos, or links I can refer to?

---

<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: [December 8, 2023, 2:00pm UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/4 "2023-12-08T14:00:55Z")

</div>

So you want one user to collect the favorites, and then allow a different user to view them?

---

<div class="post-metadata">

### Author: ![\_ffwpu](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/_ffwpu/32/16380_2.png) [@\_ffwpu](https://community.glideapps.com/u/_ffwpu)
#### Post date: [December 9, 2023, 12:25am UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/5 "2023-12-09T00:25:59Z")

</div>

yes

---

<div class="post-metadata">

### Author: ![Denis1](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/denis1/32/65827_2.png) [@Denis1](https://community.glideapps.com/u/Denis1)
#### Post date: [December 9, 2023, 10:54am UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/6 "2023-12-09T10:54:40Z")

</div>

[![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/3/932edfe12e0e0a3f83a8e3b72fc39319b0feb14f.jpeg "How to create favorite Action button. In glide app. (Step 1)") ](https://www.youtube.com/watch?v=BMgcG9aWezA)

---

<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: [December 9, 2023, 2:15pm UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/7 "2023-12-09T14:15:47Z")

</div>

Then you would have to save the users’ “favorites” into a basic column, since user-specific columns will make it impossible for users to share the “favorites” list.

Is row count a concern for you?

---

<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: [December 9, 2023, 3:14pm UTC](https://community.glideapps.com/t/how-do-i-make-products-that-i-have-saved-as-favorites-appear-when-a-specific-person-logs-in/68503/8 "2023-12-09T15:14:45Z")

</div>

I think what I would do is create a new table that contains three columns (‘UserA ID’, ‘UserB ID’, and ‘Product ID’). How it gets populated is up to you, You could have one product per row, or you could have a comma delimited list of multiple products in one row per UserA/B combination . One way is simple to set up but uses more rows, and the other way is more complex to set up but uses less row. Basically when UserA wants to share a product with UserB, they would create a row in this new table with the ID’s for both users along with the Product Id.
