Forum Discussion
SUM INCORRECT
- 3 years ago
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 _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
- afrutos3 years ago
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