Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm using power query to convert text values to date / time. As you can see on screenshot below it does it correctly for the first few records but then returns the majority of the values left as errors even though there is no discernible difference in format.
Any ideas?
Solved! Go to Solution.
@Jebilaya , Your system is having US date format, the file is in UK date format.
or convert
date(( right(DD__MM__YY[date],4)), (mid(DD__MM__YY[date],4,2)) ,(left(DD__MM__YY[date],2)))
DAX Functions- LEFT, MID, RIGHT: https://youtu.be/HEa72qLvxXo
Power Query - Text.Start, Text.Middle, Text.End: https://www.youtube.com/watch?v=vky4wPqm0O0
@Jebilaya , Your system is having US date format, the file is in UK date format.
or convert
date(( right(DD__MM__YY[date],4)), (mid(DD__MM__YY[date],4,2)) ,(left(DD__MM__YY[date],2)))
DAX Functions- LEFT, MID, RIGHT: https://youtu.be/HEa72qLvxXo
Power Query - Text.Start, Text.Middle, Text.End: https://www.youtube.com/watch?v=vky4wPqm0O0
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.