I am trying to create a Dataview table which only shows notes with a chosen date so I can set the Dataview query and check on it over a period of time.
When I have the function:
Where Date = today(date)
The table works; it shows the notes with today’s date in the table, however, it’s dynamic, not static. So to make it static I input the date manually, but a manually inputted date gives me a blank table (No Notes).
I tried to reverse engineer the today(date) function, it outputs “January 30, 2024”. But even if I input that manually I still get a blank table.
Both these returned a blank table:
Where Date = "January 30, 2024"
Where Date = "2024-01-30"
I also tried both dates formats inside square brackets, to no avail.
Does anyone know of a solution to my dilemma? I assume I have the formatting wrong?
The end goal is once I know how to format the date, I can use Templater to Input the required date based on the note title, upon note creation. (Resulting in a Daily Calendar template I can create for past, current or future days)