Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello any experts,
[Urgent] Does any one know how to convert total number of month to year and month. My column "Month" as experience(time)
For example, I want to convert Months equal to 61 to become 5 Year 1 Month. I tried a lot of method such as quotient, those date/format function is not suitable and working. Month = QUOTIENT([month],365) & " Year " & QUOTIENT(MOD([month],365),30) & " Month "
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
It is for creating a new column.
Years and Months CC =
VAR _year =
ROUNDDOWN ( DIVIDE ( 'Month'[Month], 12 ), 0 )
RETURN
IF (
_year <> 0,
_year & "Year "
& MOD ( 'Month'[Month], 12 ) & "Month",
MOD ( 'Month'[Month], 12 ) & "Month"
)
Hi,
I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
It is for creating a new column.
Years and Months CC =
VAR _year =
ROUNDDOWN ( DIVIDE ( 'Month'[Month], 12 ), 0 )
RETURN
IF (
_year <> 0,
_year & "Year "
& MOD ( 'Month'[Month], 12 ) & "Month",
MOD ( 'Month'[Month], 12 ) & "Month"
)
Hi Mr.Kim
Thank you for your solution, Because I`m keep find youtube and website about converting number to month year but unable to found it solution. Now I`m able to solve my issue through your script.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |