Hello folks,
i have a question regarding the identification and count of value pairs in different colums.
My table looks like this:
timestamp message id device
1483382200 10 A
1483382200 10 A
1483382300 5 B
1483382300 5 B
1483382400 6 B
1483382500 100 C
1483382600 11 A
1483382700 7 B
1483382700 8 B
1483382800 12 A
What i am trying to find out is the count of timestamps where the message id is different.
There should only be one timestamp linked to one message id. If there are two rows where the timestamp and the message id are the same it's perfectly fine. I just need to detect if one timestamp is linked to multiple message id's.
Ideally, the count should be 2 if one timestamp is linked to 3 different message id's.
I calculated an additional column where i concentrated the timestamp and the message id into a new number and created a visual table. I used a specific timestamp as a filter and i got this result:
It's almost what i was looking for altough the count should be 2 and i need it as a measure.
Thank you for your help and advice in advance!
Best Regards