Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Only customer with multiple product?

I have data that looks like:

CustomerProduct
Frank

Ball

SamBat
CharlieBall
FrankGlove
DanBat
Sam

Ball

FrankBat

I would like to show only those customers who have more than 1 product.  In this case I would like to have a table that show only Frank and Sam and the products they have purchased.  Something like:

Frank     Ball

             Glove

             Bat

Sam     Bat

            Ball

This is probably something very simple but I am missing it.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe like attached?

View solution in original post

3 Replies
swuehl
MVP
MVP

Maybe like attached?

jagan
Luminary Alumni
Luminary Alumni

Hi STeve,

Use Customer and Product as Dimensions and use the below expression

=Count(TOTAL <Customer> Distinct Product)

HOpe this helps you.

Regards,

Jagan.

Not applicable
Author

Awesome!  Thanks for your help.  This works just like I wanted it.