💡Utilises one final decimal number instead of doing the Complete/Goal calculation like in the Progress Bar example. EntriesNameCompletionSimple BarFull Bar58.3333333%■■■■■ 58%■■■■■□□□□□ 58%10%■ 10%■□□□□□□□□□ 10%0.05% 0%□□□□□□□□□□ 0%100%✅✅Simple Barif(prop("Completion") >= 1, "✅", if(empty(prop("Completion")), "0%", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%"))Full Barif(prop("Completion") >= 1, "✅", slice("■■■■■■■■■■", 0, floor(prop("Completion") * 10)) + slice("□□□□□□□□□□", 0, ceil(10 - prop("Completion") * 10)) + " " + format(round(prop("Completion") * 100)) + "%") By Ben • Latest • Was this helpful? Please consider buying me a coffee. Cheers!