Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi there
When a call comes in the and the call is missed , i would like to know if the call was returned.
When the Result is Missed, that identifies a "Missed Call". I would like to know if the call is returned in 3 days, then it must count as a returned call. The "From" number for the missed call will be in the "To" column, will be the same.
Direction |
To |
From |
Date/Time |
Result |
inbound |
(123) 123-1231 |
(011) 111-1111 |
8/30/2024 |
missed |
inbound |
(123) 123-1231 |
(333) 111-2222 |
8/30/2024 |
missed |
inbound |
(842) 842-8421 |
(786) 223-223 |
9/1/2024 |
missed |
inbound |
(899) 899-8999 |
(222) 222-2222 |
9/1/2024 |
missed |
inbound |
(011) 111-1111 |
(444) 444-4444 |
9/1/2024 |
answered |
inbound |
(011) 111-1111 |
(444) 444-4444 |
9/1/2024 |
answered |
inbound |
(222) 222-2222 |
(899) 899-8999 |
9/6/2024 |
answered |
Solved! Go to Solution.
Hi @Kaysa ,
Based on the testing, please try the following methods:
1.Create the sample table.
2.Create the calculated column to identify if a missed call was returned.
ReturnedCall =
VAR ReturnedCalls =
FILTER(
'Table',
'Table'[Result] = "missed" &&
'Table'[From] = EARLIER('Table'[To]) &&
'Table'[Date] <= EARLIER('Table'[Date]) + 3
)
RETURN
IF('Table'[Result] = "answered", "answered",
IF(COUNTROWS(RETURNEDCALLS) > 0, "Returned", "Not Returned")
)
3.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kaysa ,
Based on the testing, please try the following methods:
1.Create the sample table.
2.Create the calculated column to identify if a missed call was returned.
ReturnedCall =
VAR ReturnedCalls =
FILTER(
'Table',
'Table'[Result] = "missed" &&
'Table'[From] = EARLIER('Table'[To]) &&
'Table'[Date] <= EARLIER('Table'[Date]) + 3
)
RETURN
IF('Table'[Result] = "answered", "answered",
IF(COUNTROWS(RETURNEDCALLS) > 0, "Returned", "Not Returned")
)
3.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Direction |
To |
From |
Date/Time |
Result |
inbound |
(123) 123-1231 |
(011) 111-1111 |
8/30/2024 |
missed |
inbound |
(123) 123-1231 |
(333) 111-2222 |
8/30/2024 |
missed |
inbound |
(842) 842-8421 |
(786) 223-223 |
9/1/2024 |
missed |
inbound |
(899) 899-8999 |
(222) 222-2222 |
9/1/2024 |
missed |
inbound |
(011) 111-1111 |
(444) 444-4444 |
9/1/2024 |
answered |
inbound |
(011) 111-1111 |
(444) 444-4444 |
9/1/2024 |
answered |
inbound |
(222) 222-2222 |
(899) 899-8999 |
9/6/2024 |
answered |
Hi,
Share data in a format that can be pasted in an MS Excel file. Show the expected result very clearly.
There is nothing i can understand there. Someone who does will help you.
when multiple calls come in from the same number and are all missed, and then someone calls that number back - how do you know which of the missed calls they respond to? They could also respond to a call that was missed last month?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
78 | |
58 | |
36 | |
33 |
User | Count |
---|---|
96 | |
62 | |
56 | |
49 | |
41 |