Forum Discussion

Antonio_Gomez's avatar
Antonio_Gomez
Resolver I
3 years ago
Solved

Error adding (Sum) Columns or Rows

Hello Everyone,   I have this issue:   If I use this formula the total of the rows is OK, but the total of the columns is wrong:   PerDifAtendPersCorr = VAR _table = SUMMARIZE(Proyectos,Proy...
  • Antonio_Gomez's avatar
    Antonio_Gomez
    3 years ago

    foodd 

     

    I used this mesarure and the problem was solved

     

    PerDifAtendPersCorr = SUMX(Proyectos,[PerDifAtendPers] )

     

     

    Where:

     

    PerDifAtendPers = CALCULATE(
    DISTINCTCOUNT(AccionesIPI[IDSolicitante]),
    FILTER(
    AccionesIPI,
    OR(
    AccionesIPI[Medio] = "Presencial",
    AccionesIPI[Medio] = BLANK()
    )
    )
    )