Thanks for the response.
It would be get the value for each date with the next date then average those values
Main Topics
Browse All TopicsHello,
I need to calculate the average minutes between a group of dates. I have a table that has an id and date.
There can be any number of dates per id. I need to find some way to group by the id and return the difference in minutes between each date, then average that. Here is an example of the data.
0205b60a-2ba8-49de-8aad-9e
0205b60a-2ba8-49de-8aad-9e
0205b60a-2ba8-49de-8aad-9e
0205b60a-2ba8-49de-8aad-9e
I can deal with a solution/ideas in TSQL , C# or VB,
Thanks for any help
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
DDL:
Create Table Test(
Id UniqueIdentifier Not Null,
[Date] DateTime)
DML:
Select id, Cast(Avg(Cast(dateb as Float)-Cast(datea as Float)) as DateTime)
From ( Select id, date as datea, (Select Top 1 date from Test b
Where b.id = a.id And b.Date > a.Date) as dateb
From test a ) dates
Where dateb is not Null
Group by id
Order By id
Business Accounts
Answer for Membership
by: stopher2475Posted on 2007-05-17 at 08:45:39ID: 19109125
Are you averaging the space each date has with the next date or each date has with every date?