Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Dear Community,
I have a table which consists 2 column weight and units. And would like get help on DAX to create a new column measure which calculate all the weight in KG. I'm wondering is there have a solution like what I did in excel (=CONVERT(column,"lbm","kg")), directly put kg/pound/tons instead of putting the pound-to-kg number for calculation.
Weight | Units | New measure (in KG) |
1465.7 | KG | |
2.510 | KG | |
4500 | LBs |
Thanks for your attention and appreciate any help given.
@NickProp28 I will create a table with a unique value of the unit name and the conversation rate, and then set the relationship on the unit name with the main table. and then in the main table, I will put another column for the conversion like this
Converted Kgs =
MainTable[Weight] * RELATED ( NewTable[Conversion Rate] )
Check my latest blog post Compare Budgeted Scenarios vs. Actuals to get a summary of my favourite Power BI feature releases in 2020
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@NickProp28 you have to give the factor from units to Kgs, there is no inbuilt function. You can store the factor value in a table and then use it from that table to keep it more scalable and flexible.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Dear @parry2k ,
Thanks. May I have a basic idea on how to create table and link it to the new measure column?
Hi @NickProp28
CONVERT Palys a different role in PBI.
You might think of considering to use SWITCH instead.
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |