I have a spreadsheet that I need to count uniques during a payperiod see below
A F
2/10 2
2/10 2
2/10 10
2/24 3
2/24 5
2/24 5
2/24 1
I am able to count the uniques with the following
=SUM(IF(FREQUENCY(IF(LEN(F$2:$F$8000)>0,MATCH($F$2:$F$8000,$F$2:$F$8000,0),""),IF(LEN($F$2:$F$8000)>0,MATCH($F$2:$F$8000,$F$2:$F$8000,0),""))>0,1))
but I need to incorporate column A as a condition
so I will get
2/10 = 2
2/24 = 3