Forum Discussion
Percent decrease in measure
- 3 years ago
Hi,
try this measure:
Measure 3 = calculate(sum('Table (3)'[A])*(1-0.0035))or for 0.35% use a column to transform it into the decimal number 0.0035 and replace that in the measure with the new fieldIf I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Hi sraj,
Is this value coming from a column?
If this value is from a column, try this:
If this is a constant value, you can simply do the multiply and then substract:
- sraj3 years agoResponsive Resident
A is not a column = It is a calculated Value from a total measure i.e.
(712141429 + 78420125661) = 79,132,267,090
B 0.35% is a calculated value too and is not going to be constant.
Right now this is what I am doing
A = [X] + [Y]
[X] + [Y] * (1 -([B]))- Souvik08123 years agoFrequent Visitor
I am not sure if I can provide a solution to your issue, however, when I back calculate, I see it's actually 0.003432 very near to 0.35%. Is it showing 0.35% sue to 2 decimal places and the actual underlying value is different? This might be the reason for your visual showing a value different than the one in calculator.
- sraj3 years agoResponsive Resident
Yes, that's correct it is showing 0.35% to 2 decimal places.
- Souvik08123 years agoFrequent Visitor
Sorry, it's not clear.
Are you doing(?):A = [X] + [Y]
A * (1 -([B]))And to achieve this, should you put a parantheses as:A = [X] + [Y]
([X] + [Y]) * (1 -([B]))