Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have two tables that each has one field in common, for example, both tables have a column containing Color (see below example).
I want to be able to, in a Matrix, sum the size of Table 1 according to color, and then divide by the number of staff in Table 2. How could I accomplish this? Thank you
Solved! Go to Solution.
Try create this measure in Table 1:
Result =
var sumbycolor = CALCULATE(SUM(Table1[Size]),ALLEXCEPT(Table1,Table1[Color]))
var staffno = CALCULATE(SUM('Table2'[Staff]),FILTER(Table1,Table1[Color]=RELATED(Table2[Color])))
Return DIVIDE(sumbycolor,staffno)
Best,
Paul
Try create this measure in Table 1:
Result =
var sumbycolor = CALCULATE(SUM(Table1[Size]),ALLEXCEPT(Table1,Table1[Color]))
var staffno = CALCULATE(SUM('Table2'[Staff]),FILTER(Table1,Table1[Color]=RELATED(Table2[Color])))
Return DIVIDE(sumbycolor,staffno)
Best,
Paul
Hi @bwanRPD
try to add a measure into 'Table 1'
Measure =
DIVIDE(
SELECTEDVALUE('Table 1'[size]);
CALCULATE(SUM('Table 2'[Staff]);'Table 2'[Color]=SELECTEDVALUE('Table 1'[Color]))
)
do not hesitate to give a kudo to useful posts and mark solutions as solution
Seems like I'm getting some issues with that
A yellow popup says: The syntax for ';' is incorrect.
Then when I hover over the measure it says: Unexpected expression 'calculate'
that seemed to have worked! but then now i get this error. sorry, i'm a beginner in terms of Power BI formulas
A function 'SELECTEDVALUE' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
ok @bwanRPD
try
Measure =
DIVIDE(
SELECTEDVALUE('Table 1'[size]),
CALCULATE(SUM('Table 2'[Staff]),Filter('Table 2','Table 2'[Color]=SELECTEDVALUE('Table 1'[Color])))
)
do not hesitate to give a kudo to useful posts and mark solutions as solution
Syntax is correct but it's not showing any values.
I want to be able to pull this new measure into the values section of a Matrix visualization, and it would give me the calculated field of the sum of the size of table 1 divided by the staff of table 2, by color.
Thanks for all the help so far!
i do see correct calculations in this, but for example, for the green color, it's missing values for 'square' when there should be values. i think it's happening to other data i'm applying this measure to as well, otherwise, it does seem to do the job. Do you know what the issue might be?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
62 | |
46 | |
45 |