Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi, I have a dynamic calendar table created in DAX and wonder if this is possible to have in M?
Solved! Go to Solution.
Hello@Anonymous
there are for sure multiple ways to create this table. Here one simple approach
let
Today = Date.From(DateTime.FixedLocalNow()),
CreateCalendareList = {Date.AddDays(Today, -2), Date.AddDays(Today, -9), Date.AddDays(Today, -16), Date.AddDays(Today, -23)},
ConvertListToTable = Table.FromList(CreateCalendareList, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
ChangeType = Table.TransformColumnTypes(ConvertListToTable,{{"Column1", type date}}),
RenameColumn = Table.RenameColumns(ChangeType,{{"Column1", "Date"}})
in
RenameColumn
Copy paste this code to the advanced editor in a new blank query to see how the solution works.
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Hello@Anonymous
there are for sure multiple ways to create this table. Here one simple approach
let
Today = Date.From(DateTime.FixedLocalNow()),
CreateCalendareList = {Date.AddDays(Today, -2), Date.AddDays(Today, -9), Date.AddDays(Today, -16), Date.AddDays(Today, -23)},
ConvertListToTable = Table.FromList(CreateCalendareList, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
ChangeType = Table.TransformColumnTypes(ConvertListToTable,{{"Column1", type date}}),
RenameColumn = Table.RenameColumns(ChangeType,{{"Column1", "Date"}})
in
RenameColumn
Copy paste this code to the advanced editor in a new blank query to see how the solution works.
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 7 | |
| 5 | |
| 5 | |
| 3 |