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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

How to get Year + Month with Month leading zero

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!

3 REPLIES 3
nji1000
New Member

Thanks - neat trick and helped me solve my problem.

 

To add to that - if you need to make an 8 digit date from month-year data you can do:

 

YEAR *10000 + MONTH *100 +1

 

e.g. to get 20250401

Anonymous
Not applicable

Hi @Anonymous ,

 

Thanks for your nice sharing!

And there's another way to get year month number.

YearMonthNumber = VALUE(FORMAT([Date],"YYYYMM"))

vstephenmsft_0-1680513011975.png

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.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.