Forum Discussion
Count value in different columns
- 9 years ago
Hi abukapsoun,
If this is the only problem, I would suggest to use a new function "DISTINCTCOUNT".
Measure = DISTINCTCOUNT ( Table1[Name] )
Because only keeping one row would lead another problem that the connection between "country" and "value" would be broken. (the data in red rectangle belongs to no country.)
Best Regards!
Dale
Thank you very much Dale..
The unpivot trick worked, but created me another problem.
When unpivotting, it will create extra rows but duplication. So if I unpivot Col1 2 3, and I want to count how many person there is in UK, the value would be 3 instead of 1.
Is there a way I can overcome this problem? Like when unpivotting, only the new created column is filled with values and not the whole row.
Thanks again
Hi abukapsoun,
If this is the only problem, I would suggest to use a new function "DISTINCTCOUNT".
Measure = DISTINCTCOUNT ( Table1[Name] )
Because only keeping one row would lead another problem that the connection between "country" and "value" would be broken. (the data in red rectangle belongs to no country.)
Best Regards!
Dale