Forum Discussion
MarkShnier__You
Qrew Legend
3 days agoIt sounds like you have a relationship where one person has many "Service Provided records".
You can make a new field there for Age at Service Provided date.
var date DOB = [My Date of Service Provided field]; // update with your own field here
Year(Today())-Year($DOB)
-
If(
Month(Today())<Month($DOB)
or
(Month(Today())=Month($DOB) and Day(Today())<Day($DOB)),1,0)
Then you can make a [Age Category at Date of Service] field there too.