Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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
Partner - Champion III
Partner - Champion III

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.