I am relatively new to Obsidian and am currently building a PKM for work use. I have each meeting on a separate note and have a daily page that is always up. I currently have a data view query on my daily page that lists all of my reoccurring meetings. I would like to put a day of the week tag in the meetings so only Monday’s meetings will show up in that query on Monday, etc.
TABLE summary AS "Summary of Last Meeting", actionItems AS "Action Items"
FROM -"z_templates"
WHERE noteType="meeting" AND type="scheduled"
What I can not figure out is how to get today’s day of the week and use that in the query to only list the meetings that will be on that day. I have not found much on the internet, and what I did try, either I did something wrong or do not have all the correct plugins. (Currently only using dataview and tasks for my work vault.)
This should query notes that match the current day today (Wednesday, as of writing). Is this what you want?
```dataview
TABLE
summary AS "Summary of Last Meeting",
actionItems AS "Action Items"
FROM -"z_templates"
WHERE noteType="meeting"
AND type="scheduled"
AND
day = dateformat(date(today), "EEEE")
```
Thank you so much. This is exactly what I was looking for. The dateformat() was the part that was throwing me off. I think most of what I did find was using dataviewjs and overcomplicating things for what I needed.