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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
diskovered
Helper III
Helper III

Displaying Tenure Year and Months

@parry2k  Need help with formatting year and month. Currently tenure formats this way:

 

10.80 I was hoping to get it to: 10 years & 10 months

 

--------------------------------------------------------------

Tenure (yr) = 'Length Of Service'[LengthOfService]/365

--------------------------------------------------------------

Tenure YoY = Calculate(
CALCULATE('Length Of Service'[Avg Tenure (yr)],Employee[HD indicator]="Y"),
FILTER(Employee,
(CALCULATE(MAX ('Period'[Date])) >= Employee[Effective Start Date])
),
FILTER(Employee,
(CALCULATE(MAX (Period[Date])) <= Employee[Effective End Date])
)
)
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

So, are you saying that if you have a number like 10.80 that you want to translate that to 10 years, 10 months? Is that what you are saying? If that is the case, you can use this:

 

Column = 
VAR __period = SEARCH(".",[Column1],1,BLANK())
VAR __years = LEFT([Column1],__period - 1)
VAR __months = ROUNDUP(([Column1] - __years) * 12,0)
RETURN
__years & " years & " & __months & " months" 

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

So, are you saying that if you have a number like 10.80 that you want to translate that to 10 years, 10 months? Is that what you are saying? If that is the case, you can use this:

 

Column = 
VAR __period = SEARCH(".",[Column1],1,BLANK())
VAR __years = LEFT([Column1],__period - 1)
VAR __months = ROUNDUP(([Column1] - __years) * 12,0)
RETURN
__years & " years & " & __months & " months" 

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Sorry, how do I separate year and month and separate lines? eg:

 

10 years &

10 months

 

Thanks for your help!

Incredible! Thanks much! @Greg_Deckler 

Sweet! Glad I got it right!

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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