Forum Discussion

iulian_buhat's avatar
iulian_buhat
Frequent Visitor
5 years ago
Solved

Need help generating a Dynamic Calendar Table

For a couple of reports I need a calendar table that generates all the dates from the day before the calculation to 6 months after. For now I have used the Calendar() dax command to do so, but when s...
  • amitchandak's avatar
    5 years ago

    iulian_buhat , not very clear, you can create a calendar with dates like

     

    Date = calendar(Min(Table[Date]) , Eomonth( max(Table[Date])+180,0))
    Date = calendar(Min(Table[Date]) , Eomonth( today() + 180,0))

     

    you can create various combinations.