Hi have two sharepoint lists. Students and Group. Students age is calculated on Date of birth and also on the start date of the event.
If(
IsBlank(StudentDOB.SelectedDate),
ThisItem.StudentAge,
Round(
DateDiff(
StudentDOB.SelectedDate,
LookUp(
Group,
Title = GroupTitleComboBox1.Selected.Title,
StartDate
)
) / 365,
0
)
)
It works unless the date is passed the startdate and then it adds 1 year. any solutions out there?