Forum Discussion

Atif's avatar
Atif
Resolver I
6 years ago
Solved

undefined

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 sam...
  • parry2k's avatar
    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.