I think this person was trying to do something similar, but that thread is closed so I can’t ask for the solution lol
I’d like to create a dataview embed of my calendar. I use the Full Calendar plugin, which uses notes from a specified folder to create calendar events.
the notes’ contents would look something like this:
---
title: Dentist
allDay: false
startTime: 12:00
endTime: 13:00
date: 2024-09-17
completed:
Category:
- Calendar
---
and this would get a file name like 2024-09-17 Dentist
The only usable calendar in dataview that really does anything is this
```dataview
CALENDAR file.ctime
From "00 Todo/00 Calendar/02 Home"
```
which results in
This looks nice but isn’t super helpful because the ctime
just gives the calendar the time of file creation. I’ve tried a bunch of different commands, like file.date
but nothing works.
I’m not finding much online either.
Any ideas how can I tell the dataview calendar to not display the creation date, but the date that’s either in the date
property or in the file name?
Thanks!!