Forum Discussion
mp390988
1 year agoPost Partisan
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...
- 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 )
Shahid12523
1 year agoCommunity Champion
Convert TDMonth from text to date using this DAX:
TDMonthDate = DATEVALUE("01-" & [TDMonth])
Then use TDMonthDate on your x-axis. Set axis type to Continuous for proper time scaling. That’ll fix the error and make your line chart work smoothly