Forum Discussion
Troubleshooting Simple Conversion of String to Date
Hello,
I am trying to solve a seemingly simple issue. I am trying to convert the following to a year.
1999/2000 to 2000.
1999/2000 (string)
My calculated column is this:
4 Replies
- amitchandak
Super User
- FreemanZ
Super User
Date format needs the complete set of YYYY-MM-DD, but you only have YYYY. You can set it as text.
- beaverbuzz85Regular Visitor
Thanks for the clarification.
I understand that you can't forecast with a basic line chart while the x-axis is text (i.e. the supposed year as you have described).
Could you please confirm?
- SamInogic
Super User
Power BI allows the DATEVALUE DAX formula with parameter as Text, which includes date value in MM/DD/YYYY format, so you need to add the below expression:
DateVal = DATEVALUE("01/01/" & RIGHT("1999/2000", 4))
Please refer to the below screenshot for the same.
Thanks!
Inogic
Innovative Logic
Blog: http://www.inogic.com/blog
twitter: @inogic