Hi all
I ran out of google keywords to use and still couldn't find a reference how to achieve the results of a single count. It would be great if the community could shed some light to my darkness
What I'm trying to do is remove the duplicates + all other cross-linked cases and retain one for counting. It doesn't matter which of the cases is counted.
A sample of the table looks as below:
Multiple rows with different Case Nos are created for let's say one interaction with the customer and then cross-linked with each other to denote that its coming from one interaction. But because of this structure, a simple use of remove duplicates didn't work for me, it retains 3 unique case no. instead of counting it as one.
I don't know if there's a way to find all the cross linked case no and perhaps assign a single unique number for all the rows? or any other way to achieve the desired single count.
Thanks all!
D
I ran out of google keywords to use and still couldn't find a reference how to achieve the results of a single count. It would be great if the community could shed some light to my darkness
What I'm trying to do is remove the duplicates + all other cross-linked cases and retain one for counting. It doesn't matter which of the cases is counted.
A sample of the table looks as below:
Date | Case No | Cross Linked Case No |
03-Jan-2019 | 2019-1200 | 2019-1205 |
03-Jan-2019 | 2019-1200 | 2019-1206 |
04-Jan-2019 | 2019-1205 | 2019-1200 |
04-Jan-2019 | 2019-1205 | 2019-1206 |
04-Jan-2019 | 2019-1206 | 2019-1200 |
04-Jan-2019 | 2019-1206 | 2019-1205 |
Multiple rows with different Case Nos are created for let's say one interaction with the customer and then cross-linked with each other to denote that its coming from one interaction. But because of this structure, a simple use of remove duplicates didn't work for me, it retains 3 unique case no. instead of counting it as one.
I don't know if there's a way to find all the cross linked case no and perhaps assign a single unique number for all the rows? or any other way to achieve the desired single count.
Thanks all!
D