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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I am trying to translate a calculation I created in excel into Power Bi and am running into major issues. I was hoping that someone could take a look at the two attached files and give me some insight on what is going on. The excel file has the results that I am looking for.
https://drive.google.com/open?id=1HN8Z1COYbUMyT2rptIkHfWd6RupbvHuN
Solved! Go to Solution.
Hi @nmck86,
Please check out the demo here.
I would suggest you use the original data instead of the unpivot data. For example below, filtering out the row in the red rectangle from the unpivot table would be very hard.
Water Quality =
DIVIDE (
CALCULATE (
SUM ( 'Result'[Weights] ),
FILTER (
'Result',
'Result'[likeliness to recommend] >= 9
&& 'Result'[water quality] = EARLIER ( Rankings[Value] )
)
)
- CALCULATE (
SUM ( 'Result'[Weights] ),
FILTER (
'Result',
'Result'[likeliness to recommend] <= 6
&& 'Result'[water quality] = EARLIER ( Rankings[Value] )
)
),
CALCULATE (
SUM ( 'Result'[Weights] ),
'Result'[water quality] = EARLIER ( Rankings[Value] )
)
)Water Prices =
DIVIDE (
CALCULATE (
SUM ( 'Result'[Weights] ),
FILTER (
'Result',
'Result'[likeliness to recommend] >= 9
&& 'Result'[water price] = EARLIER ( Rankings[Value] )
)
)
- CALCULATE (
SUM ( 'Result'[Weights] ),
FILTER (
'Result',
'Result'[likeliness to recommend] <= 6
&& 'Result'[water price] = EARLIER ( Rankings[Value] )
)
),
CALCULATE (
SUM ( 'Result'[Weights] ),
'Result'[water price] = EARLIER ( Rankings[Value] )
)
)
Best Regards,
Dale
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!