I am attemping to build a report that show the average talk time for each project. The data looks like this
projectid actionid type duration
1 33 47 34
1 22 47 43
1 33 47 55
I want to take all of the same project id's where actionid = 33 and type = 47 and average their duration.
any thoughts?
projectid actionid type duration
1 33 47 34
1 22 47 43
1 33 47 55
I want to take all of the same project id's where actionid = 33 and type = 47 and average their duration.
any thoughts?