Difference Count vs Unique Count

What is the difference between “Count” and “Unique Count” in the Group By node?

Unique count only considers non-repeated items:

count([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 9
uniqueCount([1, 2, 3, 1, 2, 3, 1, 2, 3]) = 3
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.