Forum Discussion
Maddyqc
6 years agoFrequent Visitor
Not able to convert text to date
Hi, I am new to Power BI. I am not able to convert text to date. I tried calculated column method, but it requires the text to be in yyyy-mm-dd format, mine is in the other way. I tried in Power ...
az38
Community Champion
6 years agoHi Maddyqc
you were close to aim
DATE(
VALUE(RIGHT(cases[Date_report], 4)),
VALUE(LEFT(cases[Date_report], 2)),
VALUE(MID(cases[Date_report], 4, 2))
)
vinodanandan
6 years agoNew Member