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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
halifaxious
Frequent Visitor

multiply several columns by another column using M

I have a table that looks like this:

 

quantitySalaryEBPOH
1682025
7732127
0.5802530

 

I want to multiply each of the Salary, EBP and OH columns by Quantity, resulting in a table that looks like this:

quantitySalaryEBPOH
1682025
7511147189
0.54012.515

 

I know that I could beat it to death by adding 3 new columns and then removing the source columns.  e.g.

 

= Table.AddColumn(#"Source", "salaryCost", each [quantity] * [Salary], Currency.Type) 

= Table.AddColumn(#"addCol1", "ebpCost", each [quantity] * [EBP], Currency.Type) 

= Table.AddColumn(#"addCo2", "ohCost", each [quantity] * [OH], Currency.Type) 

= Table.RemoveColumns(#"addCol3",{"Salary","EBP","OH"}

 

But that is not very elegant.

 

I thought I might be able to do something like this:

 

= Table.TransformColumns( #"Source", {{"Salary", each Value.Multiply(_,[quantity])},{"EBP",each Value.Multiply(_,[quantity])},{"OH",each Value.Multiply(_,[quantity])}})

 

but I can't figure out how to get the value of [quantity] into Value.Multiply.  Is this even possible?

 

Is there a better way?

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

=Table.ReplaceValue(#"Source",each [quantity],"",(x,y,z)=>x*y,{"Salary","EBP","OH"})

View solution in original post

1 REPLY 1
wdx223_Daniel
Super User
Super User

=Table.ReplaceValue(#"Source",each [quantity],"",(x,y,z)=>x*y,{"Salary","EBP","OH"})

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.