The table behind the display

The table behind the display (1)

The table behind the above percentage display

Link back to Reddit post

Tutorial

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.

  1. Create "Database - Inline"

  2. Name first column "Progress of the academic year"

  3. Create a column with the Date property named "Start date". Input your start date, I am using 10 January 2025 here.

  4. 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.

  5. 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>

image.png

This formula calculates the total number of days between your starting date and ending date.

  1. Using the Formula function, create another column and name it "Days since start date". Paste this formula in.

<aside> 👩🏽‍💻

dateBetween(now(), Start date, "days"

</aside>

image.png