Seeking help on calculating the average date difference of a range. I thought the best approach would be to use a sumifs, followed by an average however sumifs does't total the numeric date.
See the attached spreadsheet. How would I find the average date difference for dates within a given range? ee-average-dates.xlsx
I wish to change the column references to full columns (e.g C:C), doing this doesn't work with averages, so I will need to define the active cell range. Is there an easy way to do this with a growing number of rows?
Try the formula in the attached file. Similar to Rgonzo's but take into account that column C had your data. Rearranged the data a bit and assumed you wanted to fill in the formula across your dates for each pair of dates (week) ee-average-dates_wexample.xlsx
Alternative, add a duration column to the list with simple formula "Delivery Date" less "Approved Date". You can then do the Averageifs formula on this column.
Assuming Duration in column D, formula in B14 and then copied across:
Now that is bizarre, I was going to comment on RGOnzo's formula being mathematically incorrect but it does actually give the same results as I get with the formula I posted.
Syntax of mine is AVERAGE(Date 1 - Date 2) ie Average duration
whereas yours are looking at (Sum of Date Range1/Count of DateRange1) - (Sum of Date Range2/Count of DateRange2); (ie Average Date1 - Average Date2)
I was always of the opinion that Averages and Products had to be done at the source level to ensure that the placement of the operators ( * or /) were in the right place but it seems to not matter in this case.
Just looked at the file uploaded by xtermie and I see they have done the same as me, calculated duration and then done the average of that. Apologies to xtermie if it seemed I was copying. No points to me for that part, maybe just for the Table suggestion.
Slight difference with my suggestion is that I have used the IFERROR function.
The syntax for that being: IFERROR(Formula,False)
Whereas xtermie has used combination of IF and ISERROR
The syntax for that being IF(ISERROR(Formula),False,Formula)
Anastasia D. Gavanas
Hey Rob, no need to apologize, we are probably just thinking alike :)
Hopefully dabug80 will find our suggestions/solutions helpful and will resolve their issue.
dabug80
ASKER
This is an excellent solution. It's perfect as it doesn't use an additional helper column (which I can't add due to a CSV dump). Thanks for your great help.
pls try
Open in new window
Regards