Group Selection & Sum Query

swana2k

New Member
Joined
Mar 3, 2025
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Looking for some assistance please - which I'm sure must be a pretty straight forward for those that know how (not myself!)...

I have a list of customers (A) and a 'live' count (just a zero or one) in column (B) - basically I just want to identify only those customers where the the SUM for that customer of (B) equals zero i.e. if any of (B) equals 1 then exclude from selection.

In the cross section below, customers highlighted in green would be selected - all others would be excluded as either all (B) or at least one row = 1.

1741009674184.png


Thanks in advance.
 
Hello, depending on whether you would like to see a whole list or a unique list:

Excel Formula:
=FILTER(A2:A36,NOT(SUMIFS(B2:B36,A2:A36,A2:A36)))

Excel Formula:
=UNIQUE(FILTER(A2:A36,NOT(SUMIFS(B2:B36,A2:A36,A2:A36))))
 
Upvote 0
Solution

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top