Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
I have a mtrix in power BI. It contains peoples names along the top and client names along the rows. To get the values in the matrix is a calulation function. This calulcation function does not work for the total though. Is there a way to re-configure the formula I have started to get the total to work correctly?
Thanks
Solved! Go to Solution.
Hi @mbigg ,
Try this:
Total_Row =
VAR Revenueperperson =
SUM ( 'Invoice Summary'[Total_GC] )
* DIVIDE (
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ) ),
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ), ALL ( People[Full Name] ) )
)
VAR Revenueperpersonsum =
SUMMARIZE (
'Harvest Actual',
Clients[Client],
People[Full Name],
"client revenue", Revenueperperson
)
RETURN
IF (
HASONEVALUE ( Clients[Client] ) && HASONEVALUE ( People[Full Name] ),
Revenueperperson,
SUMX ( Revenueperpersonsum, [client revenue] )
)
If the expression above doesn't work, try to create two measures:
Revenueperperson =
SUM ( 'Invoice Summary'[Total_GC] )
* DIVIDE (
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ) ),
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ), ALL ( People[Full Name] ) )
)Revenueperperson with total =
IF (
HASONEVALUE ( Clients[Client] ) && HASONEVALUE ( People[Full Name] ),
[Revenueperperson],
SUMX ( 'Harvest Actual', [Revenueperperson] )
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
@mbigg yes it is, not sure what you are trying to do there. It is sure your else branch of the statement is not working. If you can put sample data in a pbix file, it will be much easier to get you the solution.
BTW, Total_Row is a measure.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Hi,
Share the link from where i can download your PBI file.
@mbigg I guess you are referring to calculation as a measure? What is the expression of that measure? Share the DAX code.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
This is my current DAX:
Hi @mbigg ,
Try this:
Total_Row =
VAR Revenueperperson =
SUM ( 'Invoice Summary'[Total_GC] )
* DIVIDE (
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ) ),
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ), ALL ( People[Full Name] ) )
)
VAR Revenueperpersonsum =
SUMMARIZE (
'Harvest Actual',
Clients[Client],
People[Full Name],
"client revenue", Revenueperperson
)
RETURN
IF (
HASONEVALUE ( Clients[Client] ) && HASONEVALUE ( People[Full Name] ),
Revenueperperson,
SUMX ( Revenueperpersonsum, [client revenue] )
)
If the expression above doesn't work, try to create two measures:
Revenueperperson =
SUM ( 'Invoice Summary'[Total_GC] )
* DIVIDE (
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ) ),
CALCULATE ( SUM ( 'Harvest Actual'[Hours] ), ALL ( People[Full Name] ) )
)Revenueperperson with total =
IF (
HASONEVALUE ( Clients[Client] ) && HASONEVALUE ( People[Full Name] ),
[Revenueperperson],
SUMX ( 'Harvest Actual', [Revenueperperson] )
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 71 | |
| 38 | |
| 29 | |
| 26 |