Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Linear Reference Line from zero to a given target value

 

Hello All,

how can I insert a linear trendline from zero to a pre-defined (max) value?

Lines are:
green: running total last year
blue: running total this year
red: target for this year

I can have the dataset for the red line but without dates, so it indicates the full monthly volume to be achieved by the end of the month.

Thank you a lot.

 

  • Anonymous's avatar
    Anonymous
    7 years ago

    Hi Anonymous,

     

    You can write a measure to calculate out correspond value as 'reference line', then drag it to value field to achieve your requirement:

    Reference = 
    VAR _current =
        SELECTEDVALUE ( 'Sample'[Index] )
    VAR _min = 0
    VAR _max =
        MAXX ( ALLSELECTED ( 'Sample' ), [Amount] )
    RETURN
        IF (
            _current = MINX ( ALLSELECTED ( 'Sample'[Index] ), [Index] ),
            0,
            _current * _max
                / COUNTROWS ( ALLSELECTED ( 'Sample' ) )
        )
    

     

    If you still confused on coding formula, please share some sample data for test.


    Regards,

    Xiaoxin Sheng

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous,

     

    You can write a measure to calculate out correspond value as 'reference line', then drag it to value field to achieve your requirement:

    Reference = 
    VAR _current =
        SELECTEDVALUE ( 'Sample'[Index] )
    VAR _min = 0
    VAR _max =
        MAXX ( ALLSELECTED ( 'Sample' ), [Amount] )
    RETURN
        IF (
            _current = MINX ( ALLSELECTED ( 'Sample'[Index] ), [Index] ),
            0,
            _current * _max
                / COUNTROWS ( ALLSELECTED ( 'Sample' ) )
        )
    

     

    If you still confused on coding formula, please share some sample data for test.


    Regards,

    Xiaoxin Sheng

    • rshifflet's avatar
      rshifflet
      Frequent Visitor

      I am having the same issue. I have a cumulative measure that adds revenue over time, however I am trying to add a linear reference line from 0 (zero) at the beginning of the year, to the target (indicated as a SUM measure), at the end of the year. I am able to get the formula to give a strait horizontal line at zero, and I can set it a the target, but I am unable to get it to Return a line from zero to my target mesure. Could you explain the formula a bit further?

       

      Aaron

  • Anonymous  I was using the solution as above mentioned. 
    If you have .pbix file, would appreciate it. if not then I have to create sample data to show why the above formula is not working on my side. 
    thank you in advance for the support.