How to dynamically link to a Daily Note from any page in Obsidian

Do you have a home page in Obsidian? Perhaps you want to create a quick shortcut that allows you to quickly navigate to the current Daily Note.

With Dataview you can create a link that links to Today’s Daily Note. Here is how:

Just the date:

`="[[" + dateformat(date(today), "yyyy-MM-dd") + "]]"`

Add an alias like “Today” or “This week”:

`="[[" + dateformat(date(today), "yyyy-MM-dd") + "|DAILY NOTE ]]"`

Leave a Comment