Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi everyone,
I would like to do this measure :
calculate the number of interventions using the distinctcount function for which there is neither the "A61" nor the "A62" intervention. Here is the table. Table name: Table.
Thank you, My best regards.
@Anonymous Hi! Try with:
InterventionsWithoutA61A62 =
CALCULATE(
DISTINCTCOUNT('Table'[Column1]),
NOT('Table'[Column2] IN {"A61", "A62"})
)
BBF
Hi
Below is my table:
The following DAX might work for you:
Measure 3 =
var tmp=CALCULATETABLE(VALUES('Table'[Column1]),'Table'[Column2]="A61"||'Table'[Column2]="A62")
var tmp1=CALCULATETABLE(VALUES('Table'[Column1]),NOT('Table'[Column1] in tmp))
return
COUNTROWS(tmp1)
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps ,then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |