Apologies, not sure I've titled this well
Hi I wonder if some one can suggest a solution to this problem I want to count the number of unique customers (only count each unique customer once) that match on 2 or more criteria's, my jumping of points are as follows:
=SUM(IF($B$7:$B$5904<>"",IF($R$7:$R$5904<=6,1/(COUNTIFS($R$7:$R$5904,"<="&6,$B$7:$B$5904,$B$7:$B$5904))),0))
=SUMPRODUCT(1*(FREQUENCY(IF(R7:R5904<=6,MATCH(B7:B5904,B7:B5904,0)),ROW(R7:R5904)-ROW(R7))>0))
Both work to a point but I need to be able to count when a value falls between a range of 7 to 14 and also matches a specific criteria in column D (only count when value in this column matches "FD").
I've been trying to figure this out how to write this for a while and for some reason just can get my head round it, thanking anyone who can help with this in advance.