How to display 1K likes instead of 1000 likes on bubble

Hey Guys!
As on post tittle - I would like it if a given work has 999 likes on the thousandth like, the caption 1k should automatically appear, any advice how to achieve that effect?
Entire workflow is really easy :

And here is likes display where I want to do that action:

Condition:
Parent Group's Shot's shotlikes:count ≥ 1000

Text: Parent Group's Shot's shotlikes:count/1000 K

But keep in mind if you want it to scale for a lot of users, a list field with 1000 things isn’t a good idea, this is better structure:

There’s a plug-in “number shortener” that I used years ago for this

shot_likes / 1000 > 1: formatted as text

  • Yes - {shot_likes}/1000 K
  • No - {shot_likes}

You could easily scale this into 10k, 100k and millions with nested if statements (format as text).

Likes < 1000:format as text (

Yes = Likes
No = Likes < 1000000:format as text (
Yes = Likes / 1000 “k”
No = Likes / 1000000 “m”
)
)

This will output: 1k, 10k, 100k, 1m, 10m, 100m

You can keep nesting obviously, but 100m is a fair few!! :blush: