Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 ()
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |