Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi !
I'm creating a calculated column. For each calculated row of the column, I need the value of another column of the table, on the same row.
I called this value _weight and I calculated like this :
Solved! Go to Solution.
Hi @Anonymous ,
You can just use
var _weight = ShipDetails[NET_WEIGHT_LBS]
You can have a look at this video to understand more on Context Transition.
https://www.youtube.com/watch?v=03E0f-RyRn4
Regards,
Harsh Nathani
Hi @Anonymous ,
You have to use an aggregation function in your DAX like SUM, AVERAGE, etc.
Something like this:
VAR _weight = CALCULATE(SUM(ShipDetails[NET_WEIGHT_LBS]))
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
Thanks,
Pragati
Hi @Anonymous ,
You can just use
var _weight = ShipDetails[NET_WEIGHT_LBS]
You can have a look at this video to understand more on Context Transition.
https://www.youtube.com/watch?v=03E0f-RyRn4
Regards,
Harsh Nathani
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.