When grouping comments from Airtable by rating, can I use a star icon in Glide rather than just a number

I’m building an app from an Airtable base. In the base I have feedback and star rating (1-5).

In Glide I have a view where I show the feedback grouped by rating. This pulls in as a number. Is it possible to make the number a star instead?

You could use an IF column to check the number rating and return the appropriate star emoji (:star:), (:star::star:), (:star::star::star:), etc. Then group by that IF column.

2 Likes

You can use an if then else column
where 1 = :star:, 2 = :star::star: etc. Then use that column in group by

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.