What I’m trying to do
I’m using the following dataview inline DQL to show todays day name:
= dateformat(date(today), "cccc")
This works fine, and also for tomorrow, but I also need it for like in two days - so I basically need a function that can add x amount of days to date(today). Is this even possible?
I have also tried to use something like this: $= dv.date("today").toFormat("yyyy-MM-dd")
Can anyone give me a pointer to how to do this or if it is at all possible?