cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Dicko
Helper II
Helper II

DAX: calculate difference between date/times with conditions

Hi,

I have data of telephone calls with details of each call.

 

Dicko_0-1631010001044.png

 

Now I need to calculate the duration of each call if the reason is completed.

So for the call with call_id 123 the duration is 4 minutes.

 

I have no idea where to start ...
I really would like to learn how to do this.

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Dicko 

Add the following code as a new column to your table:

Difference = 

VAR __ID = Table2[call_id]
VAR __TIME = Table2[timestamp]
RETURN

IF(
    Table2[reason] = "completed",
    DATEDIFF(
        CALCULATE(
            min(Table2[timestamp]),
            Table2[call_id] = __ID,
            Table2[timestamp] < __TIME,
            REMOVEFILTERS(Table2)
        ),
        __TIME,
        MINUTE
    )
)

Fowmy_0-1631011934817.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@Dicko 

Add the following code as a new column to your table:

Difference = 

VAR __ID = Table2[call_id]
VAR __TIME = Table2[timestamp]
RETURN

IF(
    Table2[reason] = "completed",
    DATEDIFF(
        CALCULATE(
            min(Table2[timestamp]),
            Table2[call_id] = __ID,
            Table2[timestamp] < __TIME,
            REMOVEFILTERS(Table2)
        ),
        __TIME,
        MINUTE
    )
)

Fowmy_0-1631011934817.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thanks! I learned something new 🙂

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors