The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.