~ 1 min read
Notion - Progress Bar Formula
Progress Bar Formula for Notion
if(prop("Target") == 0, "None", if(prop("Current") / prop("Target") >= 1, "Completed", slice("■■■■■■■■■■", 0, floor(prop("Current") / prop("Target") * 10)) + slice("□□□□□□□□□□", 0, ceil(10 - prop("Current") / prop("Target") * 10)) + " " + format(round(prop("Current") / prop("Target") * 100)) + "%"))
Share: