Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Wrong Grand Totals Using SWITCH

Inscrição RAP =
VAR InscricaoRAP = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "622920105"
))
VAR InscricaoRAPLiquidar = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "531110100"
))

VAR ReinscricaoRAP = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "531210000"
))

VAR InscricaoConsolidada = SWITCH(
TRUE();
InscricaoRAP <> BLANK(); InscricaoRAP;
InscricaoRAPLiquidar <> BLANK(); InscricaoRAPLiquidar;
ReinscricaoRAP
)
RETURN

InscricaoConsolidada
 
Total Errado.JPG
1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can try to use the following measure to meet your requirement, the 'Table'[Column] means the first column you used in the table visual:

 

Inscrição RAP =
SUMX (
    SUMMARIZE (
        'Table';
        'Table'[Column];
        "Result";
        VAR InscricaoRAP =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "622920105"
            )
        VAR InscricaoRAPLiquidar =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "531110100"
            )
        VAR ReinscricaoRAP =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "531210000"
            )
        VAR InscricaoConsolidada =
            SWITCH (
                TRUE ();
                InscricaoRAP <> BLANK (); InscricaoRAP;
                InscricaoRAPLiquidar <> BLANK (); InscricaoRAPLiquidar;
                ReinscricaoRAP
            )
        RETURN
            InscricaoConsolidada
    );
    [Result]
)

 


If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can try to use the following measure to meet your requirement, the 'Table'[Column] means the first column you used in the table visual:

 

Inscrição RAP =
SUMX (
    SUMMARIZE (
        'Table';
        'Table'[Column];
        "Result";
        VAR InscricaoRAP =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "622920105"
            )
        VAR InscricaoRAPLiquidar =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "531110100"
            )
        VAR ReinscricaoRAP =
            CALCULATE (
                SUM ( fEmpenho[Saldo - R$ (Conta Contábil)] );
                fEmpenho[Conta Contábil] = "531210000"
            )
        VAR InscricaoConsolidada =
            SWITCH (
                TRUE ();
                InscricaoRAP <> BLANK (); InscricaoRAP;
                InscricaoRAPLiquidar <> BLANK (); InscricaoRAPLiquidar;
                ReinscricaoRAP
            )
        RETURN
            InscricaoConsolidada
    );
    [Result]
)

 


If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
SteveCampbell
Memorable Member
Memorable Member

I'm unsure exactly how your code is working without more inofmration, but the grand total is not a sum of all the rows.

 

Instead, it is the DAX calculation with no row level context - the value in "rows" of your matrix.

 

I suiggest reading this article:

https://powerpivotpro.com/2012/03/subtotals-and-grand-totals-that-add-up-correctly/

 

Appreciate your Kudos
Connect with me!

Stay up to date on  linkedin-logo.png
Read my blogs on  powerbi.tips_.png



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



kentyler
Solution Sage
Solution Sage

Could you tell us what you expect the totals to be ? and which lines are in error ?





Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


Anonymous
Not applicable

The lines are corrects, just the grand total are wrong.

Hi @Anonymous ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Generally, that kind of problem means there is some issue with the filter context.

if you RETURN each of the VARs do you see the results you expect

for example

Inscrição RAP =
VAR InscricaoRAP = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "622920105"
))
VAR InscricaoRAPLiquidar = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "531110100"
))

 

VAR ReinscricaoRAP = CALCULATE(
SUMX(
fEmpenho;
fEmpenho[Saldo - R$ (Conta Contábil)]);
FILTER(fEmpenho;fEmpenho[Conta Contábil] = "531210000"
))

 

VAR InscricaoConsolidada = SWITCH(
TRUE();
InscricaoRAP < 0; InscricaoRAP;
InscricaoRAPLiquidar <> BLANK(); InscricaoRAPLiquidar;
ReinscricaoRAP
)
RETURN

 

ReinscricaoRAP




Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.