https://butn.one/btn/?name=Buy+me+a+Coffee&link=https%3A%2F%2Fwww.buymeacoffee.com%2FE8dhPOt&tab=0&darkMode=0&transparent=1&ftSize=&ftFamily=Poppins&ftWeight=&ftStyle=&cText=%23FFFFFF&cBg=%23000000&cHText=%23FFFFFF&cHBg=%23000000&bColor=%23000&bRadius=50&bSize=4&position=center&emoji=&boxYpos=2&boxXpos=1&boxBlur=0&boxSpread=0&boxColor=rgb(15+15+15+%2F+10%25)&px=40&py=3

https://butn.one/btn/?name=Follow+on+Twitter&link=https%3A%2F%2Ftwitter.com%2FRedGregory1&tab=0&darkMode=0&transparent=1&ftSize=&ftFamily=Poppins&ftWeight=&ftStyle=&cText=%23FFFFFF&cBg=%23000000&cHText=%23FFFFFF&cHBg=%23000000&bColor=%23000&bRadius=50&bSize=4&position=center&emoji=&boxYpos=2&boxXpos=1&boxBlur=0&boxSpread=0&boxColor=rgb(15+15+15+%2F+10%25)&px=40&py=3

<aside> <img src="/icons/info-alternate_lightgray.svg" alt="/icons/info-alternate_lightgray.svg" width="40px" /> If a task is overdue, push the due date in Notion to today, and show the new due date in a calendar. If the task is not overdue or complete, show the original due date. We also explore how to see this new date formula in a calendar view. Calendars can only see one date at a time so it is important to join all dates you want to see into one Notion formula. Here is how it works.

</aside>

if(prop("Done") == false and prop("Due Date") < now(), dateAdd(prop("Due Date"), dateBetween(now(), prop("Due Date"), "days"), "days"), prop("Due Date"))
if(not empty(prop("Due Date")), if(prop("Done"), "✅ Complete", if(formatDate(prop("Due Date"), "L") == formatDate(now(), "L"), "🚧 Due Today", if(prop("Due Date") < now() and prop("Done") == false, "❌ Overdue", "🗓 Due Later"))), "")

My Tasks