Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi there,
For our case we need to have a DAX measure that shows the total of a value on all rows. This needs to in dynamically so we figured that DAX should be needed.
Here is an example:
Value | Total | |
a | 1 | 11 --> SUM(A:C) |
b | 4 | 11 |
c | 6 | 11 |
TOTAL | 11 | 33 |
Does anyone know the DAX measure for this?
Thanks!
Solved! Go to Solution.
Total = calculate(sum(Table[Value]), allselected())
Total = calculate(sum(Table[Value]), allselected())
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
17 |
User | Count |
---|---|
34 | |
21 | |
19 | |
18 | |
10 |