Forum Discussion

mp390988's avatar
mp390988
Post Partisan
1 year ago
Solved

Convert text to date

Hi,   I have the following table which is storing the TDMonth column as text.     I am trying to plot a line chart with this column being the x-axis but it's not liking it as it complainin...
  • MohamedFowzan1's avatar
    1 year ago

    Hi mp390988 

     

    If adding the column within Powerquery:

    Date.FromText("01-" & [TDMonth])


    Within DAX Calculated column, keep in mind that it depends on the regional date format settings. If thats okay use this:

    DateColumn =
    DATEVALUE(
    "01 " & 'Table'[YourColumn]
    )


     else:

    DateColumn = 
    DATE(
        RIGHT('Table'[TDMonth],4),
        SWITCH(
            LEFT('Table'[TDMonth],3),
            "Jan",1,"Feb",2,"Mar",3,"Apr",4,"May",5,
            "Jun",6,"Jul",7,"Aug",8,"Sep",9,"Oct",10,"Nov",11,"Dec",12
        ),
        1
    )