Forum Discussion
Anonymous
5 years agoNot applicable
Problem with Count
I am struggling to count and Identify the products with more than one delivery days value. Here is a simple dataset: Here, Products A, C and E have more than one delivery days value, while product B...
- 5 years ago
Hi, Anonymous
Take a try measure as below in your live connection model :
Count = CALCULATE( COUNTROWS('Table 1'), FILTER( ALL('Table 1'), 'Table 1'[Product] in DISTINCT('Table 1'[Product]) ) )Best Regards,
Community Support Team _ Eason
amitchandak
Super User
5 years agoAnonymous , Try a measure like
countx(filter(summarize(Table, Table[product], "_1", distinctcount(Table[Delivery Days])),[_1] >1),[product])
- Anonymous5 years agoNot applicable
Hi Amitchandak,
Thanks for the response, however the figure the formula derived is wrong.
- Anonymous5 years agoNot applicable
I missed and information, the Product and Delivery days are from different tables in the model! Sorry about not mentioning that earlier
- amitchandak5 years ago
Super User
Anonymous ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
- v-easonf-msft5 years ago
Community Support
Hi, Anonymous
Take a try measure as below in your live connection model :
Count = CALCULATE( COUNTROWS('Table 1'), FILTER( ALL('Table 1'), 'Table 1'[Product] in DISTINCT('Table 1'[Product]) ) )Best Regards,
Community Support Team _ Eason