Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Multiply Column by Measure

Thanks to all who reply,

 

I am trying to multiply a column [invoiceprice] by a measure [inventory turns calc] to create a product pricing field.

 

Measure:   Inventory Turns Calc = [market share calc] / SUM('Inventory Turns'[Inventory Turns])

 

This is my DAX:     Product Pricing = [Inventory Turns Calc] * sum(demoChainPrice[invoicePrice])

 

BLD65_2-1666799409838.png

 

 

Can this be done?

Or maybe I can't multiply by the Inventory Turns Calc? 

 

 

Inventory Turns Calc = [market share calc] / SUM('Inventory Turns'[Inventory Turns])

 

Market Share Calc = SUM(replacementsByCounty[replacements])*SUM('Market Share'[Market Share])*.01

 

Thank you,

BLD

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Yes, it's possible. You can have a try.

If you need a dynamic result that changes the result based on the slicer's filtering, it's best to create a measure to return the results. Because measures are dynamic and calculated columns are static.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

I also need to mention the Inventory Turns Calc field is a variable. It will change based on the value used in my parameter.

BLD65_0-1666800436375.png

 

Anonymous
Not applicable

Hi @Anonymous ,

 

Yes, it's possible. You can have a try.

If you need a dynamic result that changes the result based on the slicer's filtering, it's best to create a measure to return the results. Because measures are dynamic and calculated columns are static.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thank you.

 

I did end up with creating the measure below calcuating just the fields all together.

Seems to be working however the total for each part is always a couple of dollars off. Appears to be a rounding issue. Is there anything I can do to stop the rounding?

 

 

Product Pricing = (SUM('replacementsByCounty'[replacements]) * 'Market Share'[%] / 'Inventory Turns'[I%]) * sum(demoChainPrice[invoicePrice])

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors