Forum Discussion
sandrasanchez
Advocate I
10 years agosum measure doesn't works
Hi everybody, I have a report with a measure: Número de Usuarios = DISTINCTCOUNT(mks_customerproductuserSet[Usuario]) If I put a table with this measure, the total row doesnt make sense, why?? ...
- 10 years ago
Hi,
Your measure will return the distinctcount of your field at the total level as well.
So if the [Ususraio] field contains the same name in diffent URL then it will count as 1 at the total level and not 2
You have to modify your measure to act differently at total level if you want another result.
br
Erik
donsvensen
Skilled Sharer
10 years agoHi,
Your measure will return the distinctcount of your field at the total level as well.
So if the [Ususraio] field contains the same name in diffent URL then it will count as 1 at the total level and not 2
You have to modify your measure to act differently at total level if you want another result.
br
Erik
sandrasanchez
Advocate I
10 years agothanks so much!!!