Help

Re: Formula to calculate employee's seniority in years and months

Solved
Jump to Solution
942 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Laurie_Ahmedi
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi!
First of all, I am french so I hope you’ll understand my question. :hugs:
I’d like to calculate how long has an employee been with the company, so : since entry date (fr: date d’embauche) until now/today.

I already have a formula that calculates the number of years (fr: années) and another formula that calculates the number of months (fr: mois) but I’d like to have these informations in one formula.
Is that possible ?

Thanks !

All
années

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto
IF(
    {Birthdate},
    CONCATENATE(
        DATETIME_DIFF(TODAY(), {Birthdate}, "years"),
        " années ",
        MOD(
            DATETIME_DIFF(TODAY(), {Birthdate}, "months"),
            12
        ),
        " mois"
    )
)

See Solution in Thread

5 Replies 5

Welcome to the Airtable community!

Try TONOW({date d’embauche}) and see if that is what you want. The result will probably be in English, though.

Omg it worked, thank you so much !!

Hi again!

Do you think there is a way to have the number of years AND months calculated for each person?
For example (screenshot bellow), the first line, this person has been with the company for 12 years and 6 months, not 13 years. Is there a way to get more accurate results or am I asking too much? :smiling_face_with_tear:
Sans titre 1

Thank you in advance**

kuovonne
18 - Pluto
18 - Pluto
IF(
    {Birthdate},
    CONCATENATE(
        DATETIME_DIFF(TODAY(), {Birthdate}, "years"),
        " années ",
        MOD(
            DATETIME_DIFF(TODAY(), {Birthdate}, "months"),
            12
        ),
        " mois"
    )
)

You are genius thank you sooooo much!!! And it’s in French! :partying_face: