Forum Discussion

rnambiar's avatar
rnambiar
Frequent Visitor
2 years ago
Solved

Get the difference between 2 dates and then average it by category

I have a table with 3 columns Entity, Start_Date and End_Date as follows:

EntityStartEnd
A1/1/20241/31/2024
A1/28/20242/12/2024
A5/1/20246/5/2024
B7/31/20248/27/2024
B8/7/202410/6/2024
B9/24/202410/31/2024
C10/22/202412/28/2024
C1/6/20254/15/2025
C3/17/20255/18/2025

 

I am trying to compute the "Average difference" for each entity.  The expected result should be (average difference of start and end for each group)

A = 27

B = 41

C = 76

 

I tried the following DAX code:

AVERAGEX(
        SUMMARIZE('actrec - PVI','actrec - PVI'[Company],'actrec - PVI'[ctcdte],'actrec - PVI'[sttdte]),
        DATEDIFF('actrec - PVI'[ctcdte],'actrec - PVI'[sttdte],DAY)
    )
This just returns the overall average of the 3 categories. 
 
Thanks for your help.