Forum Discussion
Anonymous
7 years agoNot 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 Label Sport B Label QtUsersIntersection QtUsersSportOther Baloncesto ...
- 7 years ago
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])))
Cmcmahan
Resident Rockstar
7 years agoSure. 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])))