If you’re managing projects & tasks in Notion, or for any event that has a date, you can create a super simple property that tells you the number of days left before the deadline. I like to include it project management dashboards I build for clients, and they really dig this tiny feature.
For single dates:
Create a new property in your Notion database, select “Formula”, & call it Days Left F.
In the formula section, input the following code: dateBetween(prop("Date"), now(), "days"). Then hide this property.
Create a new formula, called Days Left and input the following code: if(prop("Days Left F.") < 0, "Finished", format(prop("Days Left F.")) + " days left 🏗️")
For timeframes (dates with end date):
Same process but in the second step, the formula should be: dateBetween(end(prop("Date")), now(), "days")
Pro tip: you can merge this formula with the status of your task/project
if “status” == “completed”, show “🟢”
if “status” == “in progress” or “not started” & “Days Left F.” < 0, show “🔴 XX Days Late”
if “status” == “in progress” or “not started” & “Days Left F.” > 0, show “🟠 XX Days Left”
Want to be in the loop with everything Notion? Join the 15,000+ Notioneers on the #1 Notion-focused newsletter. Every Tuesday, I’ll hit you up with an email, giving you 3 tips on how to make the most of Notion, 2 (awesome) resources, and 1 Tweet of the Week.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.