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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Pawan
Frequent Visitor

Date Time Format Help

Hi Team,

 

Please can you help me to convert below date field into Date Time format in DAX to use in Tabular model.

Input:

 

Pawan_0-1672837743564.png

Expected Output format:

Pawan_1-1672837830067.png

 

 

12 REPLIES 12
v-xinruzhu-msft
Community Support
Community Support

Hi @Pawan 

Maybe you can transfer data in power query, and change it as datetime type

e.g:

 

 

vxinruzhumsft_0-1672907452173.png

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-xinruzhu-msft I am working on Tabular cube and loading into Power BI. I can apply onl dax Convertion in Tabular cube.

Hi @Pawan 

You can try this code:

Column = CONVERT(LEFT([Column1],19),DATETIME)
vxinruzhumsft_0-1672908547310.png

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hi @v-xinruzhu-msft I am getting this error Can't convert value of type text to Datetime

tamerj1
Super User
Super User

Hi @Pawan 

please try

CONVERT ( LEFT ( 'Table'[HistoryDateOld], 20 ), DATETIME )

Anonymous
Not applicable

It should be 19

@Anonymous 

Could be. I thought the space counts. Probably not?

Pawan
Frequent Visitor

Hi @tamerj1  I am getting error like Can't convert value of type text to Datetime

@Pawan 

Seems it is not recognizing the YYYY-MM-DD format. In this case am afraid that it has to be done manually by extracting the year, the month, the day using LEFT and MID functions wrapped by VALUE then using the DATE function to calculate the date out of them. 
on the other hand you can use MID to extract the time wraped with CONVERT - TIME

Then add the time to date like _date + _time

Anonymous
Not applicable

If you do not need all datetime precision anywhere in the model, I suggest to format it in the source.

I don't have database accesss. i am looking for solution in DAX.

Anonymous
Not applicable

What about PowerQuery?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors