Hello, I am trying to determine the average of values in one column (Days Open) if criteria in two other columns is met:
- (Date Closed) is from last month
- (Facility Name) is a specific dropdown option from this column
I can calculate average based upon date closed being from last month, but adding in the second criteria that the facility name from that row is specific text is giving me issue.
=AVERAGEIF(COLLECT({Days Open}, {Date Closed}, IFERROR(MONTH(@cell ), 0) = MONTH(TODAY()) - 1, {Facility}, FIND("NAME", @cell)))