Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
karolbags
Contributor
Contributor

Set Analysis - Uniques

I have a set analysis formula counting Sales from “Germany” as follows:

(Count({<[Country]={‘Germany}>} Sales))

I would like to however only consider the uniques of a third column called “Submissions”. The current selection double counts Submissions.

How might I go about removing all duplicates of a third column / submissions column?

TIA!

Labels (1)
2 Replies
Vegar
MVP
MVP

What if you start counting unique Submissions instead? Like this:

Count({<[Country]={'Germany'}>} distinct Submissions)

BrunPierre
Partner - Master
Partner - Master

Hi, From what I understand, perhaps this?

Count(DISTINCT If(Country='Germany' and Aggr(Count(DISTINCT Submissions),Country)=1,Sales,Null()))