Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello, I have two tables. One is a auto generated call data, the other is a list of outcomes for calls.
I need to somehow create a column for the Auto generated Call data that compares both the Start/End Time of the call and the Time of submission for the outcome (Needs to be inbetween the Start/End Time) as well as the name of person who submitted the outcome vs names in the Call Data to match records and return the Outcome value matching those records.
However the names in call data can have multiple names within a cell seperated by a semicolon delimiter depending on who touched the call.
Here is an example of tables.
Call Data
Names | Start Time | End Time |
John; Nancy; Frank | 5/28/2024 12:00 PM | 5/28/2024 12:30 PM |
Frank | 5/28/2024 1:00 PM | 5/28/2024 1:10 PM |
George; Frank; Nancy; Thomas | 5/28/2024 1:05 PM | 5/28/2024 1:10 PM |
Hubert; Tony | 5/28/2024 1:10 PM | 5/28/2024 1:25 PM |
Outcome Data
Name | Time | Outcome |
Nancy | 5/28/2024 12:15 PM | Complete |
Frank | 5/28/2024 1:09 PM | Incomplete |
Thomas | 5/28/2024 1:07 PM | Hung Up |
Hubert | 5/28/2024 1:17 PM | Complete |
Desired Calculated Column Outcome
Names | Start Time | End Time | Calculated Outcome |
John; Nancy; Frank | 5/28/2024 12:00 PM | 5/28/2024 12:30 PM | Complete |
Frank | 5/28/2024 1:00 PM | 5/28/2024 1:10 PM | Incomplete |
George; Frank; Nancy; Thomas | 5/28/2024 1:05 PM | 5/28/2024 1:10 PM | Hung Up |
Hubert; Tony | 5/28/2024 1:10 PM | 5/28/2024 1:25 PM | Complete |
Solved! Go to Solution.
@JBusque , Please try a new column in call table (First Table)
Maxx(filter(Outcome, Call[Start Time]<= Outcome[Time] && Call[End Time]<= Outcome[Time] && Search(Outcome[Name], call[Names],,0) >0) , Outcome[Outcome])
@JBusque , Please try a new column in call table (First Table)
Maxx(filter(Outcome, Call[Start Time]<= Outcome[Time] && Call[End Time]<= Outcome[Time] && Search(Outcome[Name], call[Names],,0) >0) , Outcome[Outcome])
Yes this worked quite well, Thank you.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
71 | |
37 | |
31 | |
27 |
User | Count |
---|---|
91 | |
49 | |
45 | |
38 | |
36 |