The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
@Anonymous ,
Total = calculate(sum(Table[Value]), allselected())
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |