I have a table that tells me whether a value is found in a source:
Value | Source1 | Source2 | Source3 |
---|---|---|---|
alpha | 1 | 0 | 1 |
beta | 0 | 1 | 1 |
gamma | 1 | 0 | 0 |
delta | 1 | 1 | 1 |
epsilon | 0 | 1 | 0 |
zeta | 0 | 1 | 0 |
What I'd like to do is count the number of times that each source uniquely finds a given value. For this example, there are:
- one value unique to Source1 (gamma)
- two values unique to Source2 (epsilon and zeta)
- zero values unique to Source3
In practice, this calculation will be used on ~10 columns and 1000s of rows, so I need some formula help.
I've tried various combinations of sumifs, countifs, sumproducts, and array formulas, but I am stumped by the fact that the sum needs to look perpendicularly to the column.
Any help is much appreciated!
Source3
have value for other values likealpha
,beta
so what will be result for them. – Harun24HR