<aside> 💡 Utilises one final decimal number instead of doing the Complete/Goal calculation like in the Progress Bar example.
</aside>
if(prop("Completion") >= 1, "✅", if(empty(prop("Completion")), "0%", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%"))
if(prop("Completion") >= 1, "✅", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + slice("□□□□□□□□□□", 0, ceil(10 - prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%")