Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Dateformat

Hello everyone, 

 

Can anyone help me to convert this text column into a date column? 

The text value looks like this 15-FEB-20 11.00.00.000000 PM.

 

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Anonymous 

if you need exactly DAX, not M formula use:

a. for only date

ColumnDate = DATEVALUE(FORMAT(LEFT([Columntext],9),"General Date"))

b. for the datetime column

ColumnDateTime = 
var _date = DATEVALUE(FORMAT(LEFT([Columntext],9),"General Date"))
var _time = TIMEVALUE(SUBSTITUTE(RIGHT([Columntext],LEN([Columntext])-10),".000000", ""))

RETURN
_date + _time

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

6 REPLIES 6
az38
Community Champion
Community Champion

Hi @Anonymous 

if you need exactly DAX, not M formula use:

a. for only date

ColumnDate = DATEVALUE(FORMAT(LEFT([Columntext],9),"General Date"))

b. for the datetime column

ColumnDateTime = 
var _date = DATEVALUE(FORMAT(LEFT([Columntext],9),"General Date"))
var _time = TIMEVALUE(SUBSTITUTE(RIGHT([Columntext],LEN([Columntext])-10),".000000", ""))

RETURN
_date + _time

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

When i try to run the formula i get this error: 
"Cannot convert value '' of type Text to type Date."

Do you have any solution for this? 

az38
Community Champion
Community Champion

@Anonymous 

do you have empty cells with data? if so, how do you want to calculate it? what date it should return?


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

I have a column with date values like this one: "15-FEB-20 11.00.00.000000 PM." but they are formated as text and not date/time. I want to format the column from text to date/time.

az38
Community Champion
Community Champion

@Anonymous 

yes, but error "Cannot convert value '' of type Text to type Date." says to me that it is possible that you have an empty cells in your Date column. How do you plan to perform empty cells?


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

Aaaaah! Yes now it works! I didnt see the blank cell.. Thank you!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.