cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
bml123
Post Patron
Post Patron

Grand Total is not correct

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?

 

EmployeeAmount
E110
E220
Others15
Total30
2 ACCEPTED SOLUTIONS

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] )
        )
    )
)







Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

Hi @PaulDBrown ,

 

It worked. Thank you so much for the solution. 

View solution in original post

8 REPLIES 8
Samarth_18
Community Champion
Community Champion

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

PaulDBrown
Community Champion
Community Champion

Try:

Total amount = SUMX(Employee, [Amount])




Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

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] )
        )
    )
)







Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Hi @PaulDBrown ,

 

It worked. Thank you so much for the solution. 

Employee is coming from employee table

mh2587
Solution Sage
Solution Sage

Would you share the amount measure?



Muhammad Hasnain

#LetsConnect https://www.linkedin.com/in/hasnain2587/

@mh2587 

Here is the formula of my Amount measure

Amount = SWITCH(CALCULATE(MAX(Employee[Employee])),
"Others",CALCULATE(150/10),
CALCULATE([Target] / [Num_weeks]))

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

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!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors