Simplified Progress Bar

Simplified Progress Bar

For
From
Discord
Status
Updating
Share
💡
Utilises one final decimal number instead of doing the Complete/Goal calculation like in the
Progress Bar
Progress Bar
example.
 
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)) + "%")
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!