Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I have data of telephone calls with details of each call.
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.
Solved! Go to Solution.
@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
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@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
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks! I learned something new 🙂
User | Count |
---|---|
114 | |
73 | |
57 | |
47 | |
38 |
User | Count |
---|---|
173 | |
121 | |
58 | |
58 | |
56 |