Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Target line from minimum to maximum

I've looked around if I could fine answer, but unfortunately couldn't find anything. I've been looking for a way to make a target line that starts at a minimum at the begin of the year (600.000) and a maximum at the end of the year (8.000.000)? Like the red line in the example. 

 

  • Hi, Anonymous 

     

    It’s my pleasure to answer for you.

    According to your description, I think you can create a measure,then use it in line values.

    Like this:

    Measure2 =
    IF (
        SELECTEDVALUE ( 'Table 3'[month] ) = 1,
        MIN ( 'Table 3'[amount] ),
        IF ( SELECTEDVALUE ( 'Table 3'[month] ) = 12, MAX ( 'Table 3'[amount] ) )
    )

    Here is my sample .pbix file.Hope it helps.

    If it doesn’t solve your problem, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

5 Replies

  • v-janeyg-msft's avatar
    v-janeyg-msft
    Community Support

    Hi, Anonymous 

     

    It’s my pleasure to answer for you.

    According to your description, I think you can create a measure,then use it in line values.

    Like this:

    Measure2 =
    IF (
        SELECTEDVALUE ( 'Table 3'[month] ) = 1,
        MIN ( 'Table 3'[amount] ),
        IF ( SELECTEDVALUE ( 'Table 3'[month] ) = 12, MAX ( 'Table 3'[amount] ) )
    )

    Here is my sample .pbix file.Hope it helps.

    If it doesn’t solve your problem, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • dwightathompson's avatar
      dwightathompson
      Regular Visitor

      Thank you for your answer. I was also trying to solve this problem and your solution worked nicely for me!

  • Anonymous , you can have constant like. or you create a measure that take advantage axis and keep on adding the value

  • Anonymous's avatar
    Anonymous
    Not applicable

    Thanks for the help, also got advice on making a Generated series table. Will try to implement this in the current table

    Link Generate series 

  • Anonymous's avatar
    Anonymous
    Not applicable

    Thanks for the help, only need to implement it in my own PowerBI model 🙂