BASES - Relative Progress Bars

Setup

Result

You get a view like this:

BASES - Relative Progress Bars.webp

Code

Snippet 1 - fPercentage

(currentEffort / estimatedEffort * 100).round(1)

Snippet 2 - fProgressBar

("🟩".repeat(((formula.fPercentage / 100) * 10).round(0)) + "⬛".repeat(((100 - formula.fPercentage) / 100 * 10).floor()))