Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
78 | |
77 | |
44 | |
30 | |
26 |
User | Count |
---|---|
97 | |
90 | |
52 | |
47 | |
46 |