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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.