Forum Discussion

afrutos's avatar
afrutos
Resolver I
3 years ago
Solved

SUM INCORRECT

 

Hello community

I am trying to solve the total of my matrix, with SUMX but I get a wrong calculation,

My column of NºBENEFICIARIoS I have calculated like this:
CALCULATE(DISTINCTCOUNT(Solicitudes/ayudas'[idAutor]),KEEPFILTERS(PROYECTOS[NombreWeb]<>"ACCIDENT INSURANCE AND TRAVEL ASSISTANCE"))

And I get the result ok but not the sum, logically, I was trying to fix it with sumx but the calculations per row then are not correct....
Does anybody know? i would appreciate

 

  • Hi afrutos ,

    According to your description, the measure NºBENEFICIARIOS can get correct result in each row but incorrect in total, but SUMX BENEFICIARIOS is correct in total but not in each row. Here's my solution.

    Suppose the column in Solicitudes/ayudas related to 'PROYECTOS'[NombreWeb] named [Column].

    Measure =
    IF (
        HASONEVALUE ( [NombreWeb] ),
        CALCULATE (
            DISTINCTCOUNT ( 'Solicitudes/ayudas'[idAutor] ),
            KEEPFILTERS ( 'PROYECTOS'[NombreWeb] <> "ACCIDENT INSURANCE AND TRAVEL ASSISTANCE" )
        ),
        SUMX (
            SUMMARIZE (
                'Solicitudes/ayudas',
                'Solicitudes/ayudas'[Column],
                "Value",
                    CALCULATE (
                        DISTINCTCOUNT ( 'Solicitudes/ayudas'[idAutor] ),
                        KEEPFILTERS ( 'PROYECTOS'[NombreWeb] <> "ACCIDENT INSURANCE AND TRAVEL ASSISTANCE" )
                    )
            ),
            [Value]
        )
    )
    

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion
  • Hi afrutos ,

    According to your description, the measure NºBENEFICIARIOS can get correct result in each row but incorrect in total, but SUMX BENEFICIARIOS is correct in total but not in each row. Here's my solution.

    Suppose the column in Solicitudes/ayudas related to 'PROYECTOS'[NombreWeb] named [Column].

    Measure =
    IF (
        HASONEVALUE ( [NombreWeb] ),
        CALCULATE (
            DISTINCTCOUNT ( 'Solicitudes/ayudas'[idAutor] ),
            KEEPFILTERS ( 'PROYECTOS'[NombreWeb] <> "ACCIDENT INSURANCE AND TRAVEL ASSISTANCE" )
        ),
        SUMX (
            SUMMARIZE (
                'Solicitudes/ayudas',
                'Solicitudes/ayudas'[Column],
                "Value",
                    CALCULATE (
                        DISTINCTCOUNT ( 'Solicitudes/ayudas'[idAutor] ),
                        KEEPFILTERS ( 'PROYECTOS'[NombreWeb] <> "ACCIDENT INSURANCE AND TRAVEL ASSISTANCE" )
                    )
            ),
            [Value]
        )
    )
    

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • afrutos's avatar
      afrutos
      Resolver I

      Hello, first of all I would like to thank you, you understood perfectly what I needed.

      At the end I found a solution, I don't know yet if it's efficient or not, here is it:

      Sumx(values(PROYECTOS[NombreWeb]),
      CALCULATE(DISTINCTCOUNT('Solicitudes/ayudas'[idAutor]),KEEPFILTERS(PROYECTOS[NombreWeb]<>"SEGURO DE ACCIDENTE Y ASISTENCIA EN VIAJE")))

      Nevertheless, your solution is working perfectly as well, so, thank you, is correct