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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Community Champion
Community Champion

 

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
Community Champion
Community Champion

 

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors