Forum Discussion
undefined
- 6 years ago
Atif here is the measure and the output , I guess this is what you are looking for:
Decrease = VAR __month = MAX ( ProdX[Column1] ) VAR __initialValue = 10 VAR __decreaseBy = .1 //percentage RETURN __initialValue * CALCULATE ( PRODUCTX ( VALUES ( ProdX[Column1] ), IF ( ProdX[Column1] = 1, 1, 1-__decreaseBy ) ), ProdX[Column1] <= __month )I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
Atif here is the measure and the output , I guess this is what you are looking for:
Decrease =
VAR __month = MAX ( ProdX[Column1] )
VAR __initialValue = 10
VAR __decreaseBy = .1 //percentage
RETURN
__initialValue *
CALCULATE (
PRODUCTX (
VALUES ( ProdX[Column1] ),
IF ( ProdX[Column1] = 1, 1, 1-__decreaseBy )
),
ProdX[Column1] <= __month
)
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
Dear parry2k,
Any idea of how will it be done for multiple products and multiple clients.
Please note that there are values against each product and client from January to June.
This means that values for each month to decrease based on the actual value of that particular month.
Best,
Atif