I’m trying to create a single-select field for easier sorting based on a compiled age based on the Birthdate (DOB) column.
Here are my formulas:
Age column:
DATETIME_DIFF(TODAY(),{DOB}, “years”)
Which returns the age of each student.
Age Groups Co...