I'm trying to count the number of unique transaction ID, based on values in three other columns.
Table:
Transaction Type Start End
6778 1 4 10
6779 1 5 11
6780 1 5 11
6780 1 5 11
6781 0 5 11
6782 0 5 11
6783 1 5 12
6783 1 5 12
6784 1 6 12
There are 7 unique values in the Transaction column. There are 5 unique transactions where type = 1, 3 unique transactions where type = 1 AND start = 5, and 2 unique transactions where type = 1 AND start = 5 AND End = 11
How can I make a formula to count the unique transactions where I have the three conditions?
Table:
Transaction Type Start End
6778 1 4 10
6779 1 5 11
6780 1 5 11
6780 1 5 11
6781 0 5 11
6782 0 5 11
6783 1 5 12
6783 1 5 12
6784 1 6 12
There are 7 unique values in the Transaction column. There are 5 unique transactions where type = 1, 3 unique transactions where type = 1 AND start = 5, and 2 unique transactions where type = 1 AND start = 5 AND End = 11
How can I make a formula to count the unique transactions where I have the three conditions?