This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
How do I add a calculated column that simply is the product of the values in two other columns (Qty on Hand X Unit Cost)? Seems like it should be easy enough to do, but I'm struggling with it... Thanks in advance.
Solved! Go to Solution.
Load your PBIX, and go to your Data and go to the table where the columns are. Click "New Column" and enter the formula:
Inventory Cost =[Qty on Hand] * [Unit Cost]
@andre @Anonymous Instead of calculated column can use Measure:= SUMX( TableName; TableName[Qty on Hand] * TableName[Unit Cost] ) so you can iterate the whole table like a calulated column.
Load your PBIX, and go to your Data and go to the table where the columns are. Click "New Column" and enter the formula:
Inventory Cost =[Qty on Hand] * [Unit Cost]
Perfect. Thanks. That's simple enough. I was convinced that I had to use some type of built in function to do a calculation.
@Anonymous i am afraid in this particular case your measure calc will not work. I am not a big fan of calculated columns but in this case, I think that smoupre's solution will work better.
@andre - Whoop, glossed over this one a little to quickly. Yep, you're right. Thanks for pointing this out.
you can do this by building up a final measure by utlizing two hidden measures.
Create and Hide these measures
Measure1 := SUM([Qty on Hand])
Measure2 := SUM([Unit Cost])
Final measure
Measure3 := Measure1 * Measure2
@andre @Anonymous Instead of calculated column can use Measure:= SUMX( TableName; TableName[Qty on Hand] * TableName[Unit Cost] ) so you can iterate the whole table like a calulated column.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |