Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
Nandor -
Try this: DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])
Hi,
Some very valid suggestions, my personal choice would be to have the following calcualted column:
=FORMAT ( [YourDateField], "YYYYMMDD" )
Cheers
All excellent solutions!
1. Date.ToText([DateColumn], "yyyMMdd")
2. DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])
3. =FORMAT ( [YourDateField], "YYYYMMDD" )
thanks everyone!
Hi,
Some very valid suggestions, my personal choice would be to have the following calcualted column:
=FORMAT ( [YourDateField], "YYYYMMDD" )
Cheers
Nandor -
Try this: DateInt = ([Year]*10000)+([Month Nbr]*100)+[DayOfMonth])
In Power Query/M you could use:
Date.ToText([DateColumn], "yyyMMdd")
Thank you!
All three solutions work perfectly.
Best regards,
N
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!