Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, i have a Meassure called " CXI Material MN" this is generad from the division of the 2 colums of a table. What I require is the sum of that messure but what results is an average.
The result shoul be $0.171 and not $0.043
Greetings
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please check the below picture and the attached pbix file.
Piecio Material MIN =
SUMX (
VALUES ( Data[Description] ),
CALCULATE ( MIN ( Data[Precio Material] ) )
)
Yield SUM =
SUM( Data[Yield] )
CXI material MIN =
SUMX (
VALUES ( Data[Description] ),
DIVIDE ( [Piecio Material MIN], [Yield SUM] )
)
Hi,
I am not sure how your datamodel looks like, but please check the below picture and the attached pbix file.
Piecio Material MIN =
SUMX (
VALUES ( Data[Description] ),
CALCULATE ( MIN ( Data[Precio Material] ) )
)
Yield SUM =
SUM( Data[Yield] )
CXI material MIN =
SUMX (
VALUES ( Data[Description] ),
DIVIDE ( [Piecio Material MIN], [Yield SUM] )
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |