Forum Discussion
Need help generating a Dynamic Calendar Table
- 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.
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.
While not exactly what I was looking for, I did manage to create it like so
- amitchandak5 years agoSuper User
iulian_buhat , yes, the days you can add as an integer. Eomonth we use move to the end of the month and we play around with value and do +1 to get the start of the month . Thanks for sharing what you have done.