<aside> 💡 Utilises one final decimal number instead of doing the Complete/Goal calculation like in the Progress Bar example.

</aside>

Entries

Simple Bar

if(prop("Completion") >= 1, "✅", if(empty(prop("Completion")), "0%", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%"))

Full Bar

if(prop("Completion") >= 1, "✅", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + slice("□□□□□□□□□□", 0, ceil(10 - prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%")

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By Ben • Latest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>