Forum Discussion
Anonymous
4 years agoNot applicable
Dynamic Date Title
Hi, I want to insert years as a title into a card. Like shown in the picture. The last card "2022" is always this year. I did this with the formula "=NOW()" Each year the title should change to...
- 4 years ago
If you want a date you a year ago you can create the following measure:
Date a Year Ago = DATE(YEAR(TODAY())-1,MONTH(TODAY()), DAY(TODAY()))
PierrreVelraeds
4 years agoFrequent Visitor
Hi Anonymous,
13-7-1905 is the date value of number 2021. You can see this e.g. in Excel by changing the format into Short Date of a cell containing 2021.
I can reproduce the behaviour you experience when I create a new column instead of a measure
Defintions:
- Column Last Year = year(Today()) -1
- Last Year = year(Today()) -1
Solution is then to create a measure with that definition.
Anonymous
4 years agoNot applicable
But with that solution I wont get the year 2021 in a date format right? Only in a number format ?
- PierrreVelraeds4 years agoFrequent Visitor
If you want a date you a year ago you can create the following measure:
Date a Year Ago = DATE(YEAR(TODAY())-1,MONTH(TODAY()), DAY(TODAY()))- Anonymous4 years agoNot applicable
Awesome, this worked. Thank you very much to all of you!