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 number of "projects" that are committed in a given month. I want to use an external date table to filter this information and structure it in order throughout the year. I am having a difficult time processing how to create this table.

 

Let me know if you can help or if there is already a thread I should look at.

 

Thanks!

  • 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.

     

5 Replies