Forum Discussion
ConfusedTime
3 years agoFrequent Visitor
Overlapping Dates and Service Type
Hi Everyone, I'm after some help if possible, I've been through previous posts and I'm stuck! I'm trying to identify an overlap in services by date and service type, so for example this woul...
- Anonymous3 years ago
Hi ConfusedTime ,
You can create a calculated column as below to get it:
Flag = CALCULATE ( DISTINCTCOUNT ( 'Service'[Service] ), FILTER ( 'Service', [ClientID] = EARLIER ( [ClientID] ) && 'Service'[Start Date] > EARLIER ( 'Service'[Start Date] ) && 'Service'[Start Date] <= EARLIER ( 'Service'[End Date] ) && 'Service'[Service] <> EARLIER ( 'Service'[Service] ) ) )Best Regards
ConfusedTime
3 years agoFrequent Visitor
Brill, thank you! I'll test it out and get back to you..thanks again!
- Anonymous3 years agoNot applicable
Hi ConfusedTime ,
Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.
Best Regards