Forum Discussion
double request number
- 6 years ago
Hi ayoubb ,
Try this measure:
Measure = CALCULATE(DISTINCTCOUNT('Table'[N° demande de service]),ALLSELECTED('Table'))Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ayoubb ,
Please try what az38 said or this:
distinctcount_id =
SUMX (
ADDCOLUMNS (
DISTINCT ('Table'[demande] ),
"distinctcount", CALCULATE ( DISTINCTCOUNT ('Table'[demande]) )
),
[distinctcount]
)If this is not what you need,please show an example what the expected result would be.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- ayoubb6 years agoHelper IV
Thank you for your reply, however i tried the DAX that you provided me but shows me wrong data,
you see the table below, in the column "N° demande de service" i have tickets numbers which they're dublicated, i want a formula that count dublicated ticket for one time.
for example this column N° demande de service, if i calculate the ticket number the result should be: 3
- V-lianl-msft6 years agoCommunity Support
Hi ayoubb ,
Try this measure:
Measure = CALCULATE(DISTINCTCOUNT('Table'[N° demande de service]),ALLSELECTED('Table'))Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - V-lianl-msft6 years agoCommunity Support
Hi ayoubb ,
Is this problem sloved?
If not, please let me know.Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.