How to identify multiple product users

ekirk

New Member
Joined
Apr 24, 2017
Messages
7
I have a data set where each of our customers can have one or more than one of our 10 products. The data right now is organized like this:

Column Names: Customer name/product 1/product 2/ product 3/....
Entry: Emma/Y/N/N...

I need an easy way to not only see how many people have product 1, but how many of those people have product 1 and 2. I just cannot figure out how to organize my data to help me do this. I've tried pivot tables, but it's just not combining the data in a helpful way.

I'm really looking forward to your advice!
 
Yes, but with formulas of the form:

=and(b2="Yes",c2="Yes",d2="Yes")

...which aren't themselves that onerous.
 
Upvote 0

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Okay, so in the sample I shared all 11 people have product 1. Of those 11 people how many have product 2? How many have product 2 and 3?

What is the count as answer to the first "how many" and what is the count as answer to the second "how many"?
 
Upvote 0
What is the count as answer to the first "how many" and what is the count as answer to the second "how many"?

I don't understand your question. I'm trying to get the data to tell me how many! If I knew I wouldn't be asking the question here. :)
 
Upvote 0
I don't understand your question. I'm trying to get the data to tell me how many! If I knew I wouldn't be asking the question here. :)

What is obvious to you is not necessarily obvious to others:

You wrote: "Okay, so in the sample I shared all 11 people have product 1. Of those 11 people how many have product 2? How many have product 2 and 3?"

You want a formula that computes the answer to "Of those 11 people how many have product 2?" But you don't reveal the count the formula you ask for should compute. In the same vein, the answer to the question "How many have product 2 and 3" is given...
 
Upvote 0
I'm sorry Aladin. I know you are trying to help me, and I appreciate it, but I don't understand your question.

Here's a sample of my data. 5 lines. 5 people have product 1, 0 people have product 1 & 2, 0 people have product 1 & 3, 0 people have product 1 & 4... so on. 1 person has product 1 and 7. Is there a formula that can tell me this?

Product 1Product 2Product 3Product 4Product 5Product 6Product 7Product 8Product 9Product 10Product 11Product 12Product 13Product 14Product 15
YesNoNoNoNoNoNoNoNoNoNoNoNoNoNo
YesNoNoNoNoNoYesNoNoNoNoNoNoNoNo
YesNoNoNoNoNoNoNoNoNoNoNoNoNoNo
YesNoNoNoNoNoNoNoNoNoNoNoNoNoNo
YesNoNoNoNoNoNoNoNoNoNoNoNoNoNo

<colgroup><col width="64" span="15" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
I'm sorry Aladin. I know you are trying to help me, and I appreciate it, but I don't understand your question.

Here's a sample of my data. 5 lines. 5 people have product 1, 0 people have product 1 & 2, 0 people have product 1 & 3, 0 people have product 1 & 4... so on. 1 person has product 1 and 7. Is there a formula that can tell me this?

[...]

In what follows the sample in post #5 is uded.

A:Q of Sheet1 houses the sample, headers included.

Sheet2 houses the processes (the exhibt below depicts only 5 products: Product1 till product 5.

Row\Col
A​
B​
C​
D​
E​
F​
1​
Product 1
Product 2
Product 3
Product 4
Product 5
2​
Product 1
11​
1​
0​
1​
0​
3​
Product 2
1​
1​
0​
0​
0​
4​
Product 3
0​
0​
0​
0​
0​
5​
Product 4
1​
0​
0​
1​
0​
6​
Product 5
0​
0​
0​
0​
0​

In B2 enter, copy across, and down:

=COUNTIFS(INDEX(Sheet1!$C$2:$Q$12,0,MATCH($A2,Sheet1!$C$1:$Q$1,0)),"yes",INDEX(Sheet1!$C$2:$Q$12,0,MATCH(B$1,Sheet1!$C$1:$Q$1,0)),"yes")
 
Upvote 0

Forum statistics

Threads
1,216,049
Messages
6,128,496
Members
449,455
Latest member
jesski

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