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
Iaine
New Member

Changing YYYYMM to a valid date format

I wonder if anyone has figured out how to take 'YYYYMM' as a number field to turn it into a valid time period in power query. I have manged it in Power Bi Desktop, but as i need to do some things on it in power query it does not show.

 

Any help would be awesome 

 

Iain 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @Iaine ,

 

You could create a new custom column, something like this:

#date(
    Number.From(Text.Start(Text.From([dateKeyField]), 4)),
    Number.From(Text.End(Text.From([dateKeyField]), 2)),
    01
)

 

This gives me the following output:

BA_Pete_0-1662393261165.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

You can also use math functions to isolate the year and month components.

 

#date(
    Number.IntegerDivide([Column1], 100),
    Number.Mod([Column1],100),
    1
)

 

 

Another option is to use Date.FromText with an explicit Format specification:

 

Date.FromText(Text.From([Column1]), [Format="yyyyMM"]))

 

BA_Pete
Super User
Super User

Hi @Iaine ,

 

You could create a new custom column, something like this:

#date(
    Number.From(Text.Start(Text.From([dateKeyField]), 4)),
    Number.From(Text.End(Text.From([dateKeyField]), 2)),
    01
)

 

This gives me the following output:

BA_Pete_0-1662393261165.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




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
Top Kudoed Authors