Forum Discussion
bhmiller89
Helper V
7 years agoCreate Date Table based on Min/Max of Existing Data
I usually create a date table for my data using the usual way of defining specific beginning and end dates. I wanted to know if it is possible to create a date table based on the existing data. ...
- 7 years ago
go to ..> Model --> choose --> new table,
As per your requirement, use below formula to create table.
Table = CALENDAR(MIN('Earlier'[Date]), MAX('Earlier'[Date]) )
If it is solution to query, accept as solution... it is useful to others....
Anonymous
4 years agoNot applicable
Did you ever find a solution to your question? I am trying to do the same thing myself.
ValleyWalrus
3 years agoNew Member
Try this:
Date = ADDCOLUMNS (CALENDARAUTO(),
"Year", YEAR ([Date]),
"Month", FORMAT([Date], "mmmm"),
"Month Number", MONTH([Date]),
"Quarter", FORMAT([Date], "\QQ")
)