Forum Discussion

jmmoran20's avatar
jmmoran20
Regular Visitor
6 years ago
Solved

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...
  • v-xicai's avatar
    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.