# Followers like with Instagram or Facebook

**URL:** https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051
**Category:** Ask for Help
**Created:** [July 13, 2021, 6:17pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051 "2021-07-13T18:17:41Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![deraythecreator](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/deraythecreator/32/15923_2.png) [@deraythecreator](https://community.glideapps.com/u/deraythecreator)
#### Post date: [July 13, 2021, 6:17pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/1 "2021-07-13T18:17:41Z")

</div>

How do I make a list of followers for each user? and a counter? I already have a favorites built in, in which users have a list of users that they follow however I need to make a list of users that are following them. So far I have created a user specific ‘follow’ column. I’ve played with the if then else function but haven’t gotten a resolution just yet.  
Any suggestions?

---

<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: [July 13, 2021, 6:20pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/2 "2021-07-13T18:20:02Z")

</div>

This might be a good thread to read through.

> [@new UPDATED Glidegram - social media app (follow/unfollow, unread messages & more)](https://community.glideapps.com/t/updated-glidegram-social-media-app-follow-unfollow-unread-messages-more/9293):
>
> Hi Gliders, After several days of working through the kinks, I’m sharing my first public app, Glidegram! The Glide team has been so consistent with new features, I wanted to create a social media app using some, if not all, of the newest releases. The app has the following features: Direct messaging (private chat and chat requests) Following (favorites) Carousel posts Post comments Archiving posts Activity (or ‘notifications’) section Saving posts Reporting users I’m looking forward to c…

---

<div class="post-metadata">

### Author: ![deraythecreator](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/deraythecreator/32/15923_2.png) [@deraythecreator](https://community.glideapps.com/u/deraythecreator)
#### Post date: [July 13, 2021, 6:26pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/3 "2021-07-13T18:26:43Z")

</div>

Yes I did review that before I submitted this post however it doesnt work for me, I am in need of the ‘how to’ instructions. The post that you sent doesnt allow me access to the app.

---

<div class="post-metadata">

### Author: ![deraythecreator](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/deraythecreator/32/15923_2.png) [@deraythecreator](https://community.glideapps.com/u/deraythecreator)
#### Post date: [July 13, 2021, 6:29pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/4 "2021-07-13T18:29:14Z")

</div>

I’m sure it has something to do with the ‘if then else’ and the filtering. Any suggestions?

---

<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: [July 13, 2021, 7:05pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/5 "2021-07-13T19:05:34Z")

</div>

Well, it’s a bit of a process to build something like that. I don’t have a good example myself, but maybe somebody has an example floating around somewhere.

Essentially, what you are trying to build is a comma delimited list of users that are following another user. This comma delimited list would be placed in a column in the user row. It would also have to not be a user specific column, because you want everybody to be able to access and see the users contained within that column. That comma delimited list can then be split into an array with a Split Text column and used for relation back to the user table.

The trick is how to populate it and properly update it whenever a user follows or unfollows another user. You may want to look for some threads that discuss the trebuchet method. @Lucas_Pires and @Robert_Petitto have some very thorough video tutorials on how to set it up. It’s a complex method that can add and remove specific values from a comma delimited string of text, but it does take a solid understanding of how Glide works to pull it off. @Lisa’s example may be similar, but I’m not sure. I thought there were videos describing her process, but I could be wrong.

Another thought would be to have your comma delimited followers column, a column with the signed in user’s username, and a template that joins the two (that you can use with a set column action to overwrite the existing followers column). Unfollowing still gets a bit complicated.

There are some simpler methods where you could create a row in a sheet for each user and a single following user, but that would eat through rows very quickly.

Maybe somebody else will chime in with a sample app or better instructions.

---

<div class="post-metadata">

### Author: ![Druidenio](https://avatars.discourse-cdn.com/v4/letter/d/3be4f8/32.png) [@Druidenio](https://community.glideapps.com/u/Druidenio)
#### Post date: [January 28, 2026, 4:43pm UTC](https://community.glideapps.com/t/followers-like-with-instagram-or-facebook/29051/6 "2026-01-28T16:43:38Z")

</div>

I’d create a followers column that stores user IDs in a comma-separated list, not user-specific, then use a relation to pull matching users so each profile shows who follows them.
