Habit-Tracker: Display the last X days and the future Y days in table #1417
-
Hello, I am slowly starting to set up a habit tracker now, and I am trying to get it restricted to show a specific date-range. Example: I now want to create two habit trackers to track a specific timeframe.
I could however not figure out how to get this WHERE-condition to work properly. Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
To start you need to define where you get the right date value:
Then, with a valid date as reference, you can achieve what you want (but that is a second step) 🙂 |
Beta Was this translation helpful? Give feedback.
To start you need to define where you get the right date value:
dd.MM.yyyy
) isn't a recognized iso date format - you need to useyyyy-MM-dd
to have an implicit date metadata ->file.day
Then, with a valid date as reference, you can achieve what you want (but that is a second step) 🙂