Forum Discussion
Multiply a column with a fixed constant
- 9 years ago
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. :smileyhappy:
Target Sales = SUM(financials[ Sales]) * (1 + 0.15)
Regards
s15 can i see how you created your measure? works fine on my side
Hi vanessafvg
I'm quite new to Power BI so please teach me if I'm wrong anyway. There are two ways to create a new measure. The 1st way is New Measure on Ribbon.
Another way is to right click on the table at Fields panel then select New Measure.
I don't think DIVIDE 0.15 works. Why? Mathematically if you divide a number into a value less than 1, the result is larger than this number.
- vanessafvg9 years agoCommunity Champion
you a hundred % correct i am being daft this morning apologies
try this
measure = sum(Sales[SalesAmount]) + (sum(Sales[SalesAmount])/100 * 15)