Forum Discussion
Calculate Distinct Count based in other column value
Hello,
Im trying to count each client of the company if the cell have in the "Clase" column the data "Factura (v)". But, in "Codlegal" column i have multples times each code, so i need to use distinct to no repeat each one.
Im trying with:
NumClientes = CALCULATE ( DISTINCTCOUNT(Hoja2[Codlegal]);Hoja2[Clase] = "Factura (v)")
But i get "30,23K" and are only 2.916. I tried with differents formulas but i cant get it, any advice?
solution should be
COUNTROWS(FILTER(ALL(Table);Table[column]="Factura (v)"))
if you don't want the independent context like if you want it to change when you slice remove the ALL
2 Replies
- cs_skitResolver IV
solution should be
COUNTROWS(FILTER(ALL(Table);Table[column]="Factura (v)"))
if you don't want the independent context like if you want it to change when you slice remove the ALL
- v-sihou-msftMicrosoft Employee