AverageIf with multiple criterion

JSpears
βββββ
I would like to find the Average Resolution time (Days) for rows where the date closed is in June 2023.
=AVERAGEIF(AND([Date Closed]:[Date Closed], >DATE(2023, 6, 1), [Date Closed]:[Date Closed], <DATE(2023, 6, 30)), [Resolution Time (Days)])
I'm getting Invalid Data Type.
Thank you in advance!!
Jennifer
Tags:
Best Answer
-
Try this:
=AVG(COLLECT([Resolution Time (Days)]:[Resolution Time (Days)], [Date Closed]:[Date Closed],Β AND(@cell>DATE(2023, 6, 1), @cell<DATE(2023, 6, 30))))
Answers
-
Try this:
=AVG(COLLECT([Resolution Time (Days)]:[Resolution Time (Days)], [Date Closed]:[Date Closed],Β AND(@cell>DATE(2023, 6, 1), @cell<DATE(2023, 6, 30))))
-
THANK YOU!!! @Paul Newcome
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!