I have a table that counts total occurrences that meet multiple criteria, now I need another table that counts unique values based on the same criteria.
I have been playing with sumproduct and frequency but haven't gotten anything to work.
this is the base formula for the original table:
=COUNTIFS('UC DB'!$I:$I,">="&$B3,'UC DB'!$I:$I,"<"&$B4,'UC
DB'!$L:$L,"TRUE",'UC DB'!$DJ:$DJ,"FALSE")
The column I want to test for unique values is 'UC DB'!$A:$A I've tried:
=SUM(IF(COUNTIFS('UC DB'!A:A,'UC DB'!A:A,'UC DB'!I:I,">="&B3,'UC DB'!I:I,"
<"&B4,'UC DB'!L:L,"TRUE",'UC DB'!DJ:DJ,"FALSE")=1,1,0))
And:
=SUM(1/COUNTIFS('UC DB'!A:A,'UC DB'!A:A,'UC DB'!I:I,">="&B3,'UC DB'!I:I,"
<"&B4,'UC DB'!DJ:DJ,"FALSE"))
and a few others and nothing seems to work.