Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NumeroENAP
Helper III
Helper III

AVERAGE DATEDIFF between two dates (two events and one column)

Hi, 

 

I want a dynamic measure to be able to calculate the AVERAGE difference between two dates of a same column. The trick is that the calculation is between two status, which are "First contact" and "Contacted". The second trick is that there could be more that one subscribtion for the same ID (so you need to pick the last date per status).

 

Here's my draft :
 

CALCULATE(

AVERAGEX(
    TABLE, 
          DATEDIFF(
               CALCULATE(LASTDATE(TABLE[Date]) , TABLE[Status]="First contact") , 
               CALCULATE(LASTDATE(TABLE[Date]) , TABLE[Status]="Contacted") , 
               DAY))
FILTER(
   CALCULATE(LASTDATE(TABLE[Date]) , TABLE[Status]="First contact") < CALCULATE(LASTDATE(TABLE[Date]) ,
   TABLE[Status]="Contacted")
)

 

But, of course, the result is blank...

 

Here's my data sample.

 

IndexIDNameStatusDate
12222200Name1First contact2020-10-01
22222201Name2First contact2020-10-02
32222202Name3First contact2020-10-03
42222200Name1Contacted2020-10-12
52222201Name2Contacted2020-10-12
62222202Name3Contacted2020-10-12
72222203Name4Contacted2020-10-13
82222200Name1Subscribed2020-11-24
92222200Name2Subscribed2020-11-25
102222200Name3Subscribed2020-11-26

 

Can you help me?

 

Thank you

1 REPLY 1
lbendlin
Super User
Super User

Use variables to construct your logic step by step

 

- create a table variable that holds all unique IDs

- add columns that hold the latest "First Contact" date for each ID and the latest "Contacted" date for the same ID

- eliminate rows where either of these fields are missing

- calculate the averagex of the date diff for the remaining rows.

 

Let me know if you would like help with the DAX code.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors