Mar 09, 2022 05:58 AM
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 !
Solved! Go to Solution.
Mar 10, 2022 08:58 AM
IF(
{Birthdate},
CONCATENATE(
DATETIME_DIFF(TODAY(), {Birthdate}, "years"),
" années ",
MOD(
DATETIME_DIFF(TODAY(), {Birthdate}, "months"),
12
),
" mois"
)
)
Mar 09, 2022 06:38 AM
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.
Mar 09, 2022 08:05 AM
Omg it worked, thank you so much !!
Mar 10, 2022 01:14 AM
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:
Thank you in advance**
Mar 10, 2022 08:58 AM
IF(
{Birthdate},
CONCATENATE(
DATETIME_DIFF(TODAY(), {Birthdate}, "years"),
" années ",
MOD(
DATETIME_DIFF(TODAY(), {Birthdate}, "months"),
12
),
" mois"
)
)
Mar 11, 2022 06:45 AM
You are genius thank you sooooo much!!! And it’s in French! :partying_face: