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
Anonymous
Not applicable

How to convert text 20150714 to date?

I have Excel as data source and date is coming as 20150714. How to parse or convert to date format?

And how to make month slicer?

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @Anonymous,

 

As the text value "20150714" is not formatted as standard date format, it's not able to convert it to Date data type directly.

 

In your scenario, you can try the DAX shared by @joerykeizer,

 

a2.PNG

 

Also you can create a Custom Column in Query Editor follow below formula:

 

=Date.FromText(Text.Range([Column1],0,4)&Text.Range([Column1],4,2)&Text.Range([Column1],6,2))

 

q4.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
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

5 REPLIES 5
v-qiuyu-msft
Community Support
Community Support

Hi @Anonymous,

 

As the text value "20150714" is not formatted as standard date format, it's not able to convert it to Date data type directly.

 

In your scenario, you can try the DAX shared by @joerykeizer,

 

a2.PNG

 

Also you can create a Custom Column in Query Editor follow below formula:

 

=Date.FromText(Text.Range([Column1],0,4)&Text.Range([Column1],4,2)&Text.Range([Column1],6,2))

 

q4.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Text To Date

=Date.FromText(Text.Range([Column1],0,4)&Text.Range([Column1],4,2)&Text.Range([Column1],6,2))

 

Number to Date

=Date.FromText(Text.Range(Number.ToText([Column1]),0,4) & (Text.Range(Number.ToText([Column1]),4,2)& (Text.Range(Number.ToText([Column1]),6,2))))

BhaveshPatel
Community Champion
Community Champion

Just select the data type to "Date" by right clicking the column in Query ediotr to convert it into date column. 

 

For a month Slicer, You can drag and drop the date field to the slicer visual and select only month.

Thanks & Regards,
Bhavesh

Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.
Anonymous
Not applicable

Modeling => Data Type: Date = > "We can't automatically convert this column to date type"

Not sure if it's the best way, but you could create a new column like this:

Date = DATE(LEFT([DateText];4);MID([DateTest];5;2);RIGHT([DateText];2))

You specify which part of the text is year, month and day.

 

Btw you could also do this in the Query Editor by creating a new column:

=Date.FromText([DateText],"en-Us")

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.