Forum Discussion
Highlighting Overlapping Bookings
- 7 years ago
I have attached sample data below. The highlighted memberID's are the same person, however they have booked into 2 classes that overlap. Is there a way I can easily report on who has booked on classes that either start at the same time or overlap..
Many thanks
- 7 years ago
Hi Hutchisoni ,
Based on my test, you could try to use a measure to format your data:
Sample data:
Create below measure:
Measure = IF(CALCULATE(SUM(Table1[MemberID]))<>MAX('Table1'[MemberID]),"#F2C80F")Use the Advanced control function:
Hope it could help you.
Regards,
Daniel He
Hi Hutchisoni,
Could you please offer some sample data and post your desired result if possible?
Regards,
Daniel He
- Hutchisoni7 years agoFrequent Visitor
I have attached sample data below. The highlighted memberID's are the same person, however they have booked into 2 classes that overlap. Is there a way I can easily report on who has booked on classes that either start at the same time or overlap..
Many thanks
- v-danhe-msft7 years agoMicrosoft Employee
Hi Hutchisoni ,
Based on my test, you could try to use a measure to format your data:
Sample data:
Create below measure:
Measure = IF(CALCULATE(SUM(Table1[MemberID]))<>MAX('Table1'[MemberID]),"#F2C80F")Use the Advanced control function:
Hope it could help you.
Regards,
Daniel He