Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello.
Please help me with this. I have several names with different UIDs(Unified Identificator).
The problem is that sometimes the same person have different meetings at the same time. For example: Tomas starts date at 3pm and finish at 4pm but at the same day, starts date at 1pm and finish at 4pm. so he will have a confict of time from 3pm to 4pm.
How can I make a conditional or using DAX to show that there is a conflict with the time for that person.
I attach a picture so you can see what I mean
Solved! Go to Solution.
Hi @kristty1805 ,
Add a Custom Column to your table with this code:
= Table.AddColumn(Your_previous_step, "# Overlapping tasks", (x)=> Table.RowCount(Table.SelectRows(Your_previous_step,
each (_[UID] = x[UID]) and (_[Task] <> x[Task]) and (_[Start]<= x[End]) and (_[End] >= x[Start])))>0)
Hi @kristty1805 ,
Compare your code with the one provided. There is an extra "each".
Hello @Payeras_BI ,
Just in case, is there any way on using a measure instead of an standard column?
Thank you, It works!! 🙂
Hi @kristty1805 ,
Add a Custom Column to your table with this code:
= Table.AddColumn(Your_previous_step, "# Overlapping tasks", (x)=> Table.RowCount(Table.SelectRows(Your_previous_step,
each (_[UID] = x[UID]) and (_[Task] <> x[Task]) and (_[Start]<= x[End]) and (_[End] >= x[Start])))>0)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 7 | |
| 5 | |
| 5 | |
| 3 |