7 Free Aesthetic Notion Progress Bar Formulas
- Ann Marie Sherwood
- Jan 15
- 1 min read
#1: Basic Progress Bar

Copy the Notion formula:
(toNumber(Monday)+toNumber(Tuesday)+toNumber(Wednesday)+toNumber(Thursday)+toNumber(Friday))/5
#2: Emoji Progress Bar

Copy the Notion formula:
(((substring("▌▌▌▌▌▌▌▌▌▌",0,floor((Done)*10)).style("orange")+substring(" ",0,10-floor((Done)*10)))+" ")+format(round((Done)*100)))+"%"
#3: Pacman Progress Bar

Copy the Notion formula:
" ".repeat(Done*10).style("blue")+" ·".repeat(10-(Done*10)).style("blue")+" "+format(Done*100)+"%"
#4: Books Progress Bar

Copy the Notion formula:
"◐".repeat(floor(Current/Total*10)).style("pink")+"○".repeat(10-floor(Current/Total*10)).style("pink")+" "+format(floor(Current/Total*100))+"%"
#5: Knob Progress Bar

Copy the Notion formula:
"—".repeat(floor(Current/Total*10))+"○"+"—".repeat(10-floor(Current/Total*10))+" "+format(floor(Current/Total*100))+"%"
#6: Scissors Progress Bar

Copy the Notion formula:
"--".repeat(floor(10 Done)) + "✄" + "—".repeat(10 - floor(10 Done)) + " " + format(floor(100 * Done)) + "%"
#7: Scissors Progress Bar

Copy the Notion formula:
"--".repeat(floor(Done*10)).style("purple")+floor(Done*100)+"%"+"—".style("blue").repeat(10-floor(Done*10))+" "
Comments