Forum Discussion
kristty1805
5 years agoFrequent Visitor
conflict with dates and time
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...
- 5 years ago
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)
Payeras_BI
5 years agoSolution Sage
- kristty18055 years agoFrequent Visitor
Thank you, It works!! 🙂
- kristty18055 years agoFrequent Visitor