Forum Discussion
Anonymous
9 years agoNot applicable
DistinctCount with filter.
I have the following data: Table of Sellers Saller_ID,Client_ID,Region 1,1,North 1,2,North 1,3,South 2,4,North 3,5,West 4,6,East 5,7,East 5,8,East 6,9,South 7,10,South 8,11,South ...
- 9 years ago
Well you either want Distinct Sellers or you have the data reversed
(meaning data in Seller_ID column should be in Client_ID and vice versa)
Distinct Sellers = DISTINCTCOUNT ( 'Sellers Table'[Seller_ID] )
Vvelarde
9 years agoCommunity Champion
Anonymous
Hi Friend, Look the Image Please
Anonymous
9 years agoNot applicable
Hi Vvelarde, I forgot to mention that I need to do it using a measure. Can you help me?
- Vvelarde9 years agoCommunity Champion
Anonymous
Hi, try this:
TheMeasure = DISTINCTCOUNT(Table1[Id])
- Anonymous9 years agoNot applicable
Vvelarde, I edited my data again with more details.
- Sean9 years agoCommunity Champion
Well you either want Distinct Sellers or you have the data reversed
(meaning data in Seller_ID column should be in Client_ID and vice versa)
Distinct Sellers = DISTINCTCOUNT ( 'Sellers Table'[Seller_ID] )