<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)) + "%")