March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have matrix visual which has AgentID in row and Date in Column- grill down to month and measure in values.
My condition is to create extra line in row or to show in total, the measure difference between "agentID 1" and "agentID 3"
(1-3).
I have added two sample table to show what i have and what i need.
Thanks in advance.
Current Output
Year | 2022 | ||
Agent ID | Jan | Feb | Mar |
1 | 10 | 20 | 30 |
2 | 5 | 10 | 15 |
3 | 2 | 4 | 6 |
Total | 17 | 34 | 51 |
Required Output
Year | 2022 | ||
Agent ID | Jan | Feb | Mar |
1 | 10 | 20 | 30 |
2 | 5 | 10 | 15 |
3 | 2 | 4 | 6 |
Total | 8 | 16 | 24 |
Solved! Go to Solution.
@Raj123 try this, you can tweak the solution as you see fit.
Sales = SUM ( Table[Sales] )
Agent 1 Sales = CALCULATE ( Table[Sales], Table[Agent] = 1 )
Agent 3 Sales = CALCULATE ( Table[Sales], Table[Agent] = 3 )
Measure for Matrix =
IF ( HASONEVALUE ( Table[Agent] ), [Sales], [Agent 1 Sales] - [Agent 3 Sales] )
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.
@Raj123 try this, you can tweak the solution as you see fit.
Sales = SUM ( Table[Sales] )
Agent 1 Sales = CALCULATE ( Table[Sales], Table[Agent] = 1 )
Agent 3 Sales = CALCULATE ( Table[Sales], Table[Agent] = 3 )
Measure for Matrix =
IF ( HASONEVALUE ( Table[Agent] ), [Sales], [Agent 1 Sales] - [Agent 3 Sales] )
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 @Raj123 ,
Is this calculation to be done always on first and last name on the table? So in this case is 1 - 3 but if you have any other will be the other values?
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @MFelix ,
This is always done on first and last name. that is 1 - 3.
Thank you
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |