Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Convert from DAX to M

Hi, I have a dynamic calendar table created in DAX and wonder if this is possible to have in M?

 

Period Check =
var this_year = YEAR(TODAY())
var this_month = MONTH(TODAY())
var this_day = DAY(TODAY())
return
{
DATE(this_year, this_month, this_day-2),
DATE(this_year, this_month, this_day-9),
DATE(this_year, this_month, this_day-16),
DATE(this_year, this_month, this_day-23)
}
1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

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

View solution in original post

1 REPLY 1
Jimmy801
Community Champion
Community Champion

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors