Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi everyone,
I have a little trick that I'm using to concat Year & Month with a leading zero for the month and the value still be a number.
Just do Year * 100 + Month.
Example:
2023 * 100 + 3
= 202300 + 3
= 202303
works also when you have months higher than 9:
2023 * 100 + 10
= 202300 + 10
= 202310
Have fun with this!
Hi @Anonymous ,
Thanks for your nice sharing!
And there's another way to get year month number.
YearMonthNumber = VALUE(FORMAT([Date],"YYYYMM"))
If there is only the FORMAT function, it will return the text format, and you can manually modify it to a numeric type, or you can add another VALUE function to convert to a numeric type like me.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I was wondering what the easiest way is to have the number first. Like 012020 or even something like 01/2020, this is much easier to read.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
91 | |
87 | |
84 | |
68 | |
49 |
User | Count |
---|---|
131 | |
111 | |
96 | |
71 | |
67 |