Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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)
}
  • HelloAnonymous 

     

    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

1 Reply

  • Jimmy801's avatar
    Jimmy801
    Community Champion

    HelloAnonymous 

     

    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