Simple Progress Formula
Formula
Formula:
slice("β¬β¬β¬β¬β¬β¬β¬β¬β¬β", 0, prop("Pages Read") / prop("Pages") * 10) + " " + format(round(prop("Pages Read") / prop("Pages") * 100)) + "%"The Breakdown
slice("β¬β¬β¬β¬β¬β¬β¬β¬β¬β", 0, prop("Pages Read") / prop("Pages") * 10)- take what your progress bar looks like at 100% ...
- AND slice 0 characters from left to right ...
- AND whatever the result of property "Pages Read" divided by property "Pages" multiplied by 10 from right to left.
+ " "- the addition of an empty space.
+ format(prop("Pages Read") / prop("Pages") * 100)- the addition of what results from the following calculation- property "pages Read divided by property "Pages" multiplied by 100.
+ "%"- the addition of the percentage sign
Β
