I have two columns I am using for this formula: "Date Received" and "Days Duration (Received to Listed)". I want the formula below to look at any items in the Date Received column between 1/1/25 and 1/31/25 AND where there is a number in the Days Duration column (some columns have errors from time to time and I want to exclude those) and then I want the AVERAGE number of days. For example, if there are 3 entries with numbers (1, 2, and 3 days) and one that may have an #INVALID DATA TYPE, I want to return a 2. The formula AI returned is below and it keeps giving an #UNPARSEABLE error.
=AVERAGEIF([Date Received]:[Date Received], AND([Date Received]@cell >= DATE(2025, 1, 1), [Date Received]@cell <= DATE(2025, 1, 31), ISNUMBER([Days Duration (Received to Listed)]@cell)), [Days Duration (Received to Listed)]:[Days Duration (Received to Listed)])
Thanks in advance for any help.