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
Andrea_Fuentes
New Member

How to do operations between detail row with total rows of matricial table

I have a inconvenent to obtein one calculated column doing two operations, one of sum and other of division as I show in this image:

 

Muertes esperadas.png

Resulted must be agregated to one table of visualization type matriz.

In the before picture the operation is for each row:

Row 1) 41 * 18 / 253 = 3 (value is round) 

Row 2) 100 * 18 / 253 = 7

Row 3) 103 * 18 / 253 = 7

Row 4) 9 * 18 / 253 = 1

 

Note: Column CxIndex and #Pac Fallecidos are obteined with a messure for each one.

 

CxIndex =
VAR Valor =
CALCULATE(DISTINCTCOUNT('hce CirugiaCardioPediatrica'[IdDimCirugiaSts]), 
FILTER('hce CirugiaCardioPediatrica', 'hce CirugiaCardioPediatrica'[CirugiaIndex] = 1)) --> Marca que indica que es Index (1)
RETURN
IF(ISBLANK(Valor), 0, Valor) --> Validate null values
 
Pac Fallecidos = -- Pacientes fallecidos agrupados por grupo etario
CALCULATE(DISTINCTCOUNT('hce CirugiaCardioPediatrica'[IdCliente]),
FILTER('hce CirugiaCardioPediatrica','hce CirugiaCardioPediatrica'[Estado Egreso] = "Muerto"),
FILTER('hce CirugiaCardioPediatrica', 'hce CirugiaCardioPediatrica'[CirugiaIndex] = 1) --> Cx Index (única por atención)
)
1 ACCEPTED SOLUTION
AlB
Super User
Super User

 

Hi @Andrea_Fuentes 

Place this measure in the table visual you show above

 

Measure =
VAR aux1_ = CALCULATE ( [CxIndex], ALL ( Table1[Grupo_Etario] ) )
VAR aux2_ = CALCULATE ( [Pac Fallecidos], ALL ( Table1[Grupo_Etario] ) )
RETURN
    SUMX (
        DISTINCT ( Table1[Grupo_Etario] ),
        ROUND ( DIVIDE ( [CxIndex] * aux2_, aux1_ ), 0 )
    )

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

 

Hi @Andrea_Fuentes 

Place this measure in the table visual you show above

 

Measure =
VAR aux1_ = CALCULATE ( [CxIndex], ALL ( Table1[Grupo_Etario] ) )
VAR aux2_ = CALCULATE ( [Pac Fallecidos], ALL ( Table1[Grupo_Etario] ) )
RETURN
    SUMX (
        DISTINCT ( Table1[Grupo_Etario] ),
        ROUND ( DIVIDE ( [CxIndex] * aux2_, aux1_ ), 0 )
    )

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

 

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.