I have a button that I would like to populate a field (integer) with the sum of a field from the same table but only for the last 60 days and only for the same team member as the current row.
I’ve tried many ways but I’m just having trouble getting my head around this.
This is my most recent attempt but it isn’t returning the correct value.
ModifyRows(thisRow,thisRow.[60 Work Life Average],sum(thisRow.[Work-Life Balance].Filter([Team Members].Name = thisRow.[Team Member].Name AND Date>= (Today() - 60))))