The table behind the display (1)
The table behind the above percentage display
I used the inline database function and the progress bar display in order to do this.
Here's the same information below on my Notion page.
Create "Database - Inline"
Name first column "Progress of the academic year"
Create a column with the Date property named "Start date". Input your start date, I am using 10 January 2025 here.
Next to that one, create a column with the Date property named "End date". Input your end date, I am using 10 November 2025 here.
Using the Formula function, create another column and name it "Total duration". Paste this formula in.
<aside> 👩🏽💻
dateBetween(dateEnd(End date), dateStart(Start date), "days")
</aside>
This formula calculates the total number of days between your starting date and ending date.
<aside> 👩🏽💻
dateBetween(now(), Start date, "days"
</aside>