Forum Discussion
Create Date Table based on Min/Max of 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....
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....
- Anonymous6 years agoNot applicable
Is it possible to pull this formula created table into the "power query editor" where we can add date columns with date properties such as day of week, quarter 1, etc? Like the screen below.
- Anonymous4 years agoNot applicable
Did you ever find a solution to your question? I am trying to do the same thing myself.
- ValleyWalrus3 years agoNew Member
Try this:
Date = ADDCOLUMNS (CALENDARAUTO(),"Year", YEAR ([Date]),"Month", FORMAT([Date], "mmmm"),"Month Number", MONTH([Date]),"Quarter", FORMAT([Date], "\QQ"))
- Anonymous7 years agoNot applicable
this is awesome! Exactly what I was looking for.