Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.