Frequently Asked Questions FAQ
What is the difference between Unique Count and Total Count?
This is a concept that is divided according to how duplicate values are handled when aggregating values.
Unique Count
A unique number with duplicates removed. An item is counted only once, even if it occurs multiple times.
Example:
If a particular event occurs multiple times for a user, the Unique value for that user is counted as 1.
Total Count
It means the sum total of all items including duplicates. If the same item occurs multiple times, all occurrences are counted.
Example: If the same user triggers multiple events, all of those events are added together to calculate the Total value. For example, if a user visits 5 times, the total number of visits is counted as 5.
Last updated