Forum Discussion

antotom98's avatar
antotom98
Copper Contributor
Nov 17, 2022
Solved

COUNT ID Codes IF Columns A & B respect specific criteria

Hello there!
I'm working on a table, and I need to count the number of ID Codes depending on 2 specific criteria:

1) Each ID Code has to be counted only once, while as you can see from the ID Codes in bold there can be duplicates

2) The Balance in $USD has to be different from zero, so I need to count every positive and negative number.

 

ID CodeBalance in $USD
247627537935,268,847,385.00
5207551055205,721,030.00
935951580891,720,392,066.00
247627537938,491,785,509.00
396703241442,833,118,004.00
86634894620.00
493199721267,749,503,521.00
295191768523,981,235,402.00
283018399864,626,847,523.00
100555392394,602,840,726.00
23746532310.00
747804049288,095,379,658.00
100555392328,086,717,554.00
948887646478,954,674,545.00
798086803481,063,980,379.00
842844650848,394,944,086.00


Now, of course I can filter the 0s out of the Balance in $USD column, and then use remove duplicates, but I was trying to apply this process with a formula, to make it more efficient, since the actual file I'm working on is composed by thousands of rows. I tried with COUNTIFS, UNIQUE, and various combinations, but I didn't manage so far. Would you have any idea please?

Thanks a lot in advance!

  • antotom98 

    What should your answer be in this example?

     

    Perhaps this:

    =COUNT(UNIQUE(FILTER(Table1[ID Code],Table1[Balance in $USD]<>0)))

     

    It will return 12.

7 Replies

Resources