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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
Anonymous
Not applicable

Calculate symmetric mattrix

Hi experts,

 

I'm calculating a symmetric matrix with following tables (It is just a portion of the data):

 

Sport A LabelSport B LabelQtUsersIntersectionQtUsersSportOther
BaloncestoBalonmano16288
BaloncestoeSports29288
BaloncestoFútbol Sala262288
BalonmanoBaloncesto1630
BalonmanoeSports530
BalonmanoFútbol Sala2230
eSportsBaloncesto2950
eSportsBalonmano550
eSportsFútbol Sala2950
Fútbol SalaBaloncesto262294
Fútbol SalaBalonmano22294
Fútbol SalaeSports29294

 

The column "QtUsersSportOther" is comming from another table, and looks like this:

sportQtUser
Baloncesto288
Balonmano30
eSports50
Fútbol Sala294

 

My measure is as follows :

% us = CALCULATE(DIVIDE(SUM(SportsIntersection[QtUsersIntersection]);Sum(SportsIntersection[QtUsersSportOther]); 0))

and I want to create a symetric matrix. The output I'm getting is:

 

output.png

 

However, as it is a symetric matrix, It should look like this:

expected tab.png

I've created this ilustration to explain what I have in mind, but I can't get to translate to DAX, so I need help in this:

 

calculo.png

From the table above, from sport A ("Baloncesto") and SportB ("Futbol Sala"); and "Balonmano" and "Futbol Sala"; and "eSport" and "Futbol Sala" are already calculated, fill with blank all the rows related to the column SportA to "Futbol Sala" and so on.

 

I'm really stuck with this. Any suggestion?

Hope I've made myself understood.

1 ACCEPTED SOLUTION
Cmcmahan
Resident Rockstar
Resident Rockstar

Sure.  Is your visual always going to have the fields in alphabetical order? If so, you just need a minor change to your measure. Otherwise, you'll need some sort of other ranking system to let PowerBI know the order of the categories.

 

% us = CALCULATE(DIVIDE(SUM(SportsIntersection[QtUsersIntersection]);Sum(SportsIntersection[QtUsersSportOther]); 0); FILTER(SportsIntersection; SportsIntersection[Sport A Label]< SELECTEDVALUE(SportsIntersection[Sport B Label])))

View solution in original post

1 REPLY 1
Cmcmahan
Resident Rockstar
Resident Rockstar

Sure.  Is your visual always going to have the fields in alphabetical order? If so, you just need a minor change to your measure. Otherwise, you'll need some sort of other ranking system to let PowerBI know the order of the categories.

 

% us = CALCULATE(DIVIDE(SUM(SportsIntersection[QtUsersIntersection]);Sum(SportsIntersection[QtUsersSportOther]); 0); FILTER(SportsIntersection; SportsIntersection[Sport A Label]< SELECTEDVALUE(SportsIntersection[Sport B Label])))

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.