Reputation: 10403
I'm working with some data on a power BI matrix since it allows more dimensions than regular tables. The issue I'm having is that the size of the matrix changes depending on the filters I use.
E.G If I use no filters the matrix have 3 columns and 4 rows:
But if I select one the filters then I lose one row:
How Can I fix the size of the matrix and just show empty values if that's the case?
EDIT:
I have uploaded the data I'm using to google drive, it's just few rows:
https://drive.google.com/file/d/1_Jqer6ObhpA4OpxY8ymXunMiL4hg4tO8/view?usp=sharing
I'm almost taking the data as it is in the table except for the aggregation function for which I'm using this:
%Count =
DIVIDE(
COUNT(Hoja1[score]);
CALCULATE(COUNT(Hoja1[score]); ALL(Hoja1[score]))
)
EDIT2:
I have added the new table:
And created the relation:
But still having the same issue:
Am I missing something?
Upvotes: 2
Views: 7018
Reputation: 8148
Go to Vizualizations pane. In rows, where you have "score", click on a triangle. In a menu that pops up, check "Show items with no data".
Upvotes: 1