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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
s15
Helper III
Helper III

Multiply a column with a fixed constant

I cannot seem to find a way to multiple a column with a constant. For example I have total sales. Now I need to set the target is 15%.

The measure would loke like

 

Target Sales = XXX(financials[Sales]) * 15%) + (financial[Sales])

I don't know which function to use in my case.

Thank you

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @s15,


I just firgured out the way. Instead of 0.15, it must be dividing 100/15 because I cannot seem to find a MULTIPLY function in my case. Math is awesome init'?

 

Target Sales = SUM(financials[ Sales]) + DIVIDE(SUM(financials[ Sales]),100/15)


Yes, there is no MULTIPLY function in DAX. The arithmetic operator  * (asterisk) is usually used for multiplication. So you should also be able to simply use the formula below to calculate the Target Sales in this scenario. Smiley Happy 

Target Sales = SUM(financials[ Sales]) * (1 + 0.15)

 

Regards

View solution in original post

16 REPLIES 16

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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.