I am trying to average the age of multiple events as of specific dates (end of each month).
Currently I have "Age" calculated from "Today()" in a column in another sheet. I would like to instead calculate the Age from "Date of Notification" to "End Date", and would like to avoid using a helper column to do so. I do not want to change the "Age" column I currently have or create another age calculation helper column.
AVG(
COLLECT(
{Age},
{Status},
@cell <> "Complete",
{Date of Notification},
@cell <= [End Date]@row
)
)