Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am trying to have the individual row values appear in one column and then the sum appear in the second column for each row. I can't get it to work. Any suggestions. An example is below.
19 is the sum of all the values in the first column.
Individual Values | Total
3 | 19
5 | 19
7 | 19
4 | 19
Solved! Go to Solution.
Forgive me, are you trying to have the second column show as 19 or as the sum for that row? If the former, you'd use
Total = CALCULATE( SUM(Table1[Values]),all(Table1[Values]) )
Looks like this:
If you are looking for the latter, you can use a formula like:
Total = Table1[Values]
But if that's what you're looking for I suspect there's a deeper question that makes it more complicated Let me know if it helps.
Forgive me, are you trying to have the second column show as 19 or as the sum for that row? If the former, you'd use
Total = CALCULATE( SUM(Table1[Values]),all(Table1[Values]) )
Looks like this:
If you are looking for the latter, you can use a formula like:
Total = Table1[Values]
But if that's what you're looking for I suspect there's a deeper question that makes it more complicated Let me know if it helps.
Try this.
Column = CALCULATE(sum('Table1'[Values]),ALL('Table1'))
I've assumed your table is called Table1 and the column is called Values
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
69 | |
48 | |
41 | |
34 |
User | Count |
---|---|
164 | |
112 | |
62 | |
54 | |
38 |