Forum Discussion
jmmoran20
6 years agoRegular Visitor
Date Table Help - Month Range
Hello, I am looking to create a date table. However, I need the ability to include all days in a month not just the first day. I am creating a report where there will be a table that lists the nu...
- 6 years ago
Hi jmmoran20 ,
You may create a calculated table Like DAX below, then create relationship with your fact data table .
Calendar= CALENDARAUTO() Or Calendar= CALENDAR( MIN(Data[Date]), MAX(Data[Date]))Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-xicai
6 years agoCommunity Support
Hi jmmoran20 ,
You may create a calculated table Like DAX below, then create relationship with your fact data table .
Calendar= CALENDARAUTO()
Or
Calendar= CALENDAR( MIN(Data[Date]), MAX(Data[Date]))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.