Hey Gliders,
I built an initial ‘inline list’ notification tab for users to see when someone becomes their friend, since then I’ve added additional features and corresponding notifications.
NOW, I’d like to aggregate the currently disparate notifications (from friend invites, community invites, etc.) into one ‘inline list’ that is able to display them chronologically, from latest to oldest. Has anyone done this? Or know how I might be able to approach this?
For now I’m currently using a google sheet query,
=QUERY({Users!A2:E;Events!A2:E;Communities!A2:E},“SELECT * WHERE Col1 is not null”)
But not sure if this will be able to create the end result I have in mind, but I’m making a go at it…ATM.
Then a filter formula in the destination sheet where we want to display our inline list. I target that new ‘Combine’ column in the Helper Tab.
=filter(HelperTab!A2:A,HelperTab!A2:A<>"")
I’m not 100% where to go from here but could probably get the rest done with vlookups in GSheet and an ITE column in glide… or a bunch of relations, lookups, and finally an ite column in glide.
I’m curious to know how the experts would approach this because this is a fundamental part of my app.
Thanks @Eric_Penn. I’m with you and would love to see an example or hear an approach for what needs to happen on the Glide end of things to get it to display well.