Forum Discussion
Renattae_Schmidt
Jun 30, 2022Copper Contributor
Unique filter designated number range
Hello everyone! I am trying to create a filter that will count all the unique values assuming the values in column C are between 300 and 649. I can get the formula to work fine if I just use one ...
- Jun 30, 2022
Try the following:
=COUNTA( UNIQUE( FILTER('Iri Comp Data'!$K:$K, ('Iri Comp Data'!$C:$C >= 300) * ('Iri Comp Data'!$C:$C <= 649) * ISNUMBER(SEARCH("Foodland",'Iri Comp Data'!$O:$O)) * ISNUMBER(SEARCH("ON",'Iri Comp Data'!$S:$S)) ) ) )If this doesn't work please share your workbook with i.e. https://support.microsoft.com/en-us/office/share-onedrive-files-and-folders-9fcc2f7d-de0c-4cec-93b0-a82024800c07, Google Drive... and post the link here - Thanks
HansVogelaar
Jun 30, 2022MVP
=COUNTA( UNIQUE( FILTER( 'Iri Comp Data'!$K:$K, ('Iri Comp Data'!$C:$C>=300) * ('Iri Comp Data'!$C:$C<=649) * ISNUMBER(SEARCH("Foodland",'Iri Comp Data'!$O:$O)) * ISNUMBER( SEARCH("ON",'Iri Comp Data'!$S:$S)))))