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.
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 !!
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.
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**
IF(
{Birthdate},
CONCATENATE(
DATETIME_DIFF(TODAY(), {Birthdate}, "years"),
" années ",
MOD(
DATETIME_DIFF(TODAY(), {Birthdate}, "months"),
12
),
" mois"
)
)
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: