Forum Discussion
OlafK
5 years agoFrequent Visitor
Date Table with only quarter end dates
Hello, I'm currently facing a problem I can't solve. I use a date table but I'm not able to generate a a date table showing only quarter end dates. I managed to get one with only month end dates...
- 5 years ago
OlafK , Try like
"Qtr End", EOMONTH([Date],if(3-mod(month([Date]),3)=3,0,3-mod(month([Date]),3)))
amitchandak
Super User
5 years agoOlafK , Try like
"Qtr End", EOMONTH([Date],if(3-mod(month([Date]),3)=3,0,3-mod(month([Date]),3)))
OlafK
5 years agoFrequent Visitor
Thanks a lot, even though my meaning was a bit different in showing only quarterend dates in the table, I just put your solution to another position and it worked quite well!
Date =
ADDCOLUMNS (FILTER (
CALENDAR ( DATE(2019,11,30), TODAY()),
[Date] = EOMONTH([Date],if(3-mod(month([Date]),3)=3,0,3-mod(month([Date]),3)))),....