Forum Discussion
Mederic
Post Patron
2 years agoDAX calendar problem
Hello, I haven't used DAX for a while, I came across the link below which I would like to apply personally. However, I don't know this language at all and can't create the calendar despite the aut...
lbendlin
Super User
2 years agoYou can simplify it like this:
=
ADDCOLUMNS (
CALENDAR ( "2020-01-01" ; "2022-12-31" );
"Calendar", FORMAT([Date]; "yyyyMM")
)