Forum Discussion

JoelGDucharme's avatar
JoelGDucharme
Brass Contributor
Feb 26, 2024
Solved

Calculate age from a birth day and create age groups

I have a Sharepoint list for registration of a competition grouping participants in different age groups. I would like to program a column that calculates the age of a participant on January 1st 2024...
  • JoelGDucharme's avatar
    JoelGDucharme
    Feb 26, 2024
    It's so satisfying to find the solution myself! Here is what I found for the grouping column:
    =IF(Âge>18,"non",IF(Âge>13,"Groupe 5",IF(Âge>11,"Groupe 4",IF(Âge>8,"Groupe 3",IF(Âge>6,"Groupe 2",IF(Âge>4,"Groupe 1",IF(Âge>0,"non")))))))

    It works perfectly!

Resources