Forum Discussion
Mederic
2 years agoPost Patron
DAX 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
2 years agoSuper User
You can simplify it like this:
=
ADDCOLUMNS (
CALENDAR ( "2020-01-01" ; "2022-12-31" );
"Calendar", FORMAT([Date]; "yyyyMM")
)