Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |