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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.