SOLVED

Count of unique dates in a column

Brass Contributor

Good afternoon!

 

See attached. If you manually count the unique DATES in column A associated with the name "John Doe" in column B, you count 17 unique dates.

 

I'm looking for a formula that does that in a worksheet with 28,000 rows and 400 different names. Keep in mind, I don't want the formula to pay any attention to the time that is built in to the date format. Just the date itself.

 

Can this be done?

2 Replies
best response confirmed by Danger_SF (Brass Contributor)
Solution

@Danger_SF 

=SUM(N(IF(C1:C21=F1,MATCH(IF(C1:C21=F1,D1:D21),IF(C1:C21=F1,D1:D21),)=ROW(1:21))))

 

Is this what you want to do? Enter formula as arrayformula with ctrl+shift+enter if you don't work with Office365 or 2021.

Nice job! That worked. Thank you!
1 best response

Accepted Solutions
best response confirmed by Danger_SF (Brass Contributor)
Solution

@Danger_SF 

=SUM(N(IF(C1:C21=F1,MATCH(IF(C1:C21=F1,D1:D21),IF(C1:C21=F1,D1:D21),)=ROW(1:21))))

 

Is this what you want to do? Enter formula as arrayformula with ctrl+shift+enter if you don't work with Office365 or 2021.

View solution in original post