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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
rodneyc8063_1
Helper V
Helper V

DAX CONVERT - Error with converting to datetime? CONVERT(20200527, DATETIME)

I was playing around with the DAX function CONVERT and was specifically trying to change an integer value to a datetime value.

 

So for example I have an integer column with the value of 20200527

 

I thought this would be easy to just simply write CONVERT(20200527, DATETIME) and I should get my date. 

 

But apparently this gave an error?

 

I tried to search around and found someone had suggested the following formula

 

New Column = CONVERT(COMBINEVALUES("/",LEFT([DATE KEY],4),MID([DATE KEY],5,2),RIGHT([DATE KEY],2)),DATETIME)

 

Which works, but its just tedious to have to write out all the extra LEFT, MID, RIGHT etc.

 

Looking at this link: https://dax.guide/convert/

 

I see the following works just fine

 

EVALUATE
    {
        ( "Date1", CONVERT ( "12/25/1966", DATETIME ) ),
        ( "Date2", CONVERT ( "12-25-1966", DATETIME ) ),
        ( "Date3", CONVERT ( 12345,        DATETIME ) ),
        ( "Date4", CONVERT ( FALSE,        DATETIME ) )
    }
 
I can see CONVERT(12345, DATETIME) works (gives a weird result, but still works). 
 
I know there are other ways via Power Query and other methods to convert an integer column to a datetime. I just got excited that I found this new CONVERT function and thought this would make life super easy, but was just thrown off when I noticed I can not just throw a straight integer into it and get a datetime.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @rodneyc8063_1 

If you directly enter a numeric value in the position of the expression, then the returned result is based on 1899/12/30 0:00:00 plus the numeric value .

For example :

Ailsa-msft_0-1622450538917.png

Because Power BI doesn't know how to divide the numeric value into year, month, day, hour, minute and second .So the way you said to plug a straight integer field in without having to parse it is not feasible .

If you want to convert integer to date/time format , through Power Query or other dax .

 

Best Regards

Community Support Team _ Ailsa Tao

 

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

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @rodneyc8063_1 

If you directly enter a numeric value in the position of the expression, then the returned result is based on 1899/12/30 0:00:00 plus the numeric value .

For example :

Ailsa-msft_0-1622450538917.png

Because Power BI doesn't know how to divide the numeric value into year, month, day, hour, minute and second .So the way you said to plug a straight integer field in without having to parse it is not feasible .

If you want to convert integer to date/time format , through Power Query or other dax .

 

Best Regards

Community Support Team _ Ailsa Tao

 

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

Thanks for the detailed explanation @Anonymous !!

amitchandak
Super User
Super User

@rodneyc8063_1 , Try like

a new column =date(Quotient([Number], 10000) , Quotient(mod([Number], 10000),100), mod(mod([Number], 10000),100))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks @amitchandak for the suggestion

 

I believe this should work as well, I just wish with the CONVERT function, we can just plug a straight integer field in without having to parse it, or put in sub functions. Was just curious if there was another (even lazier) way to convert 😛 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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