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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I need to display values based on the particular unit conversion
The formula is value/Unit conversion.
I have created the parameter for unit conversion but not sure of how to include the both in same column.
How do I get this in power BI.
I have attached the sample power BI file.
Help with this is appreciated.
Thanks in advance
Solved! Go to Solution.
Try
Converted value = SUMX(
'Sheet1',
DIVIDE(
'Sheet1'[Value],
SELECTEDVALUE( 'Unit Conversion'[Column2], 1 )
)
)
Can you please apply this in the power BI file so that it will be easy for me to check.
Please