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!
I need help with how to write the dax code for how to
- count number of tickets that only have one appointment in the detail table
- count number of ticket that have more than one appointment in the detail table
- count number of tickets that do not exist in the detail table
I don't get it to work correct.
See example in the picture.
Solved! Go to Solution.
So, should be something like:
Number with only 1 =
VAR __Table =
GROUPBY(
'Table',
[Ticket No],
"Count",COUNTX(CURRENTGROUP(),[Schedule date])
)
RETURN
COUNTROWS(FILTER(__Table,[Count] = 1))
Should all be a variation of that.
So, should be something like:
Number with only 1 =
VAR __Table =
GROUPBY(
'Table',
[Ticket No],
"Count",COUNTX(CURRENTGROUP(),[Schedule date])
)
RETURN
COUNTROWS(FILTER(__Table,[Count] = 1))
Should all be a variation of that.
Works perfect!
I really appreciate your quick help.
Thank you very much!
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |