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
In the below table I want the overall minutes to be always considered as 600 for each row. I wrote the dax for overall minutes as this:
Solved! Go to Solution.
Thanks. It helped a lot. I changed it to
@Anonymous
Please try
Overall Minutes =
CALCULATE (
SUMX (
VALUES ( table[NodeId] ),
CALCULATE ( DISTINCTCOUNT ( table[hour_start] ) * 60 )
),
ALLSELECTED ( table[avg_peoplecount] )
)
Thanks. It helped a lot. I changed it to
Thanks a lot
@Anonymous
Please try
Overall Minutes =
CALCULATE (
SUMX (
VALUES ( table[NodeId] ),
CALCULATE ( DISTINCTCOUNT ( table[hour_start] ) * 60 )
),
ALLSELECTED ( table[avg_peoplecount] )
)
Hi @Anonymous
please try
Overall Minutes =
CALCULATE (
SUMX (
SUMMARIZE ( 'Table', 'Table'[date_start], 'Table'[NodeId] ),
CALCULATE ( COUNT ( 'Table'[hour_start] ) * 60 )
),
ALLSELECTED ()
)
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |