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
Nandor
Helper I
Helper I

Generate a date key

Hi,

 

I have a classical Date&Time column in my database.

I would need to add a new column generated from year, month and day.

 

For example: 20160905 for the 5th of september 2016.

 

Thank you,

Nandor

3 ACCEPTED SOLUTIONS
grapefruitmoon
Advocate I
Advocate I

In Power Query/M you could use:

 

Date.ToText([DateColumn], "yyyMMdd")

View solution in original post

tjd
Impactful Individual
Impactful Individual

Nandor -

 

Try this: DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])

View solution in original post

Framet
Resolver II
Resolver II

Hi,

 

Some very valid suggestions, my personal choice would be to have the following calcualted column:

=FORMAT ( [YourDateField], "YYYYMMDD" )

 

Cheers

View solution in original post

5 REPLIES 5
cabc_xlorla
Advocate IV
Advocate IV

All excellent solutions!

1. Date.ToText([DateColumn], "yyyMMdd")

2. DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])
3. =FORMAT ( [YourDateField], "YYYYMMDD" )

 

thanks everyone!

Framet
Resolver II
Resolver II

Hi,

 

Some very valid suggestions, my personal choice would be to have the following calcualted column:

=FORMAT ( [YourDateField], "YYYYMMDD" )

 

Cheers

tjd
Impactful Individual
Impactful Individual

Nandor -

 

Try this: DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])

grapefruitmoon
Advocate I
Advocate I

In Power Query/M you could use:

 

Date.ToText([DateColumn], "yyyMMdd")

Thank you!

 

All three solutions work perfectly.

 

Best regards,

N

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.