Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Show accounts that have two products

Shouldn't this work to show all account numbers that have both '1027073" and 'C#XIO' - and is there an easier way? =count({}[Account Movex Number])>*}DISTINCT[Account Movex Number])

1 Solution

Accepted Solutions
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

Try this.. if you want to get Accounts that has TWO products. AND operator.

Count({<Account=P({<Product={'1027073'}>})*P({<Product={'C#XIO'}>}),Product={'1027073','C#XIO'}>} Distinct [Account Movex Number])

Adjust Account and Product fields according to your datamodel.

View solution in original post

3 Replies
Anonymous
Not applicable
Author

=count({}[Account Movex Number])>*}DISTINCT[Account Movex Number])

phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

Try this.. if you want to get Accounts that has TWO products. AND operator.

Count({<Account=P({<Product={'1027073'}>})*P({<Product={'C#XIO'}>}),Product={'1027073','C#XIO'}>} Distinct [Account Movex Number])

Adjust Account and Product fields according to your datamodel.

Anonymous
Not applicable
Author

Excellent!  Thank you so much Phaneendra.