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.
I have a table with Column A and 2 calculated measures. Need to divide the sum of measure 1 by measure 2 each row result
Column A | Measure 1 (This is derived from using SUMX ( values)) | Measure 2 | Measure 3 (This needs to be calculated) |
a | 10 | 100 | 100/ Total of measure 1 |
b | 20 | 200 | 200/ Total of measure 1 (60) |
c | 10 | 300 | |
d | 20 | 400 | |
60 |
Solved! Go to Solution.
Hi, @hitesh1607
Please try the below measure
measure3 =
DIVIDE (
Measure2,
CALCULATE ( Measure1, ALLSELECTED ( Table[CoumnA] ) ),
BLANK ()
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Hi, @hitesh1607
Please try the below measure
measure3 =
DIVIDE (
Measure2,
CALCULATE ( Measure1, ALLSELECTED ( Table[CoumnA] ) ),
BLANK ()
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
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 |
---|---|
78 | |
78 | |
58 | |
36 | |
33 |
User | Count |
---|---|
95 | |
61 | |
56 | |
49 | |
41 |