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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
hegde86
Frequent Visitor

Multiply Column & Measure In DAX

HI,

I have my data as below.

Last_Calc.PNGIn this table 'Item Performance(Measure)' is a measure and it is calculated based on input selection on silcer. This needs to be multiplied with 'Weightage Based on Supplier Category'. This is static value which will be based Supplier Category (Gold, Silver Bronze).

 

Challenge is to generate  'Column_Final Item Performance' by multipliction of a column and a measure. Please help me to achive above.

4 REPLIES 4
v-juanli-msft
Community Support
Community Support

Hi @hegde86 

Is this problem sloved? 
If it is sloved, could you kindly accept it as a solution to close this case?
If not, please let me know.
 
Best Regards
Maggie
v-juanli-msft
Community Support
Community Support

Hi @hegde86 

You could only create a measure, calculated columns won't be change with the slicer, it is static.

Measure mutype = SUM('Table'[weight])*[Measure]
Capture10.JPG
 
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-juanli-msft
Community Support
Community Support

Hi @hegde86 

If tkrupka's suggestion doesn't help, please show me more details:

How to calculate the measure 'Item Performance(Measure)'?

 

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tkrupka
Resolver II
Resolver II

@hegde86 

 

See if this will meet your needs.

 

 

ColumnFinalItemPerformance  = CALCULATE ( SUM ( Weighted Based on Supplier Category) * [Item Performance])

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors