Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi,
I have a matrix like this where amount is a measure. I am getting grand total incorrect as you can see. There is some calculation in amount measure for Others. It's ignoring the value for others. I want to get 45 grand total. How do I get the correct grand total?
Employee | Amount |
E1 | 10 |
E2 | 20 |
Others | 15 |
Total | 30 |
Solved! Go to Solution.
Which table is the Employee field in the visual coming from?
If it's the Employee table try:
AMOUNT =
SUMX (
'Employee',
CALCULATE (
SWITCH (
MAX ( Employee[Employee] ),
"Others", DIVIDE ( 150, 10 ),
DIVIDE ( [Target], [Num_weeks] )
)
)
)
Proud to be a Super User!
Paul on Linkedin.
Hi @bml123 ,
Create a another measure like this:-
measure= sumx(summarize('table','table'[employee],"Correct_Sum",[amount]),[Correct_Sum]))
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Try:
Total amount = SUMX(Employee, [Amount])
Proud to be a Super User!
Paul on Linkedin.
Hi @PaulDBrown
I have tried your measue, it is not giving any values. It's just blank.
I want the grand total in my matrix to have the correct value.
Which table is the Employee field in the visual coming from?
If it's the Employee table try:
AMOUNT =
SUMX (
'Employee',
CALCULATE (
SWITCH (
MAX ( Employee[Employee] ),
"Others", DIVIDE ( 150, 10 ),
DIVIDE ( [Target], [Num_weeks] )
)
)
)
Proud to be a Super User!
Paul on Linkedin.
Employee is coming from employee table
Would you share the amount measure?
Here is the formula of my Amount measure
Amount = SWITCH(CALCULATE(MAX(Employee[Employee])),
"Others",CALCULATE(150/10),
CALCULATE([Target] / [Num_weeks]))
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!