Greetings!
I want to create a table from January to December. There would be a number against January (e.g., 10). This value should decrease by any given fraction (e.g., 1%) for February. The same factor of 1% to be applied in March on the value of February. This should be done for all twelve months.
I would appreciate it if someone could answer this promptly.
Best,
Atif
Solved! Go to Solution.
@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.⚡
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@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.⚡
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
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
User | Count |
---|---|
386 | |
229 | |
115 | |
107 | |
98 |