Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
sureshpydi
Regular Visitor

create trend line from maximum to zero line chart

Hi Team,

 

Can any one help me to get a line from maxim value to Zero on Power Bi Chart. 

 

Here is my requirement, I have a column with dates on X-Axis and Values in Y-AXIS. As shown the image below, top Graph shows my values from a column (Caluculated values, Those are good.) But We got another requirement from Client, saying that we need a trend line from Starting date to Specific Date (This will be specific, This can be anything hardcoded and can be changed.) 

 

I have tried to split the difference and caluculated weekly values (Like date difference is 7 weeks, then caluaculate difference and based on the current date substact from max value). It was worked initially. But as there is few dates missig in the interval, it is failed and graph is not coming as stright line,

 

 

Can anyone help me on this.1.jpg

1 ACCEPTED SOLUTION

Hi @sureshpydi.  Try this out:

 

Trend Points =
VAR __MinDate =
    MINX ( ALL ( Sheet1 ), Sheet1[Date] )
VAR __MinValue =
    LOOKUPVALUE ( Sheet1[Value], Sheet1[Date], __MinDate )
VAR __MaxDate =
    MAXX ( ALL ( Sheet1 ), Sheet1[Date] )
VAR __MaxValue =
    LOOKUPVALUE ( Sheet1[Value], Sheet1[Date], __MaxDate )
RETURN
    IF (
        CALCULATE ( MIN ( Sheet1[Date] ) ) = __MinDate,
        __MinValue,
        IF ( CALCULATE ( MAX ( Sheet1[Date] ) ) = __MaxDate, __MaxValue, BLANK () )
    )

Capture.PNG

 

You'll have to be sure to set the X-axis as "Continuous" instead of "Categorical" or you will only get the starting and ending points.  Also, depending on your actual data set, the "ALL" function might have to be tweaked (using KEEPFILTERS or the like).

 

Hope this helps,

David

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

HI @sureshpydi,

 

Nope, you can't manually control analyse trend line, it is managed by power bi itself and generated based on data trend.(it not contains options allow you to customize on it)

Using the Analytics pane in Power BI Desktop

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Hi Xiaoxin Sheng,

 

Thanks for the reply. I have tried this. But it was not worked for me. I need a line from Max to 0 using DAX query. Could you please let me know if it is possible with DAX?

 

Thanks,

Suresh

Hi @sureshpydi.  Try this out:

 

Trend Points =
VAR __MinDate =
    MINX ( ALL ( Sheet1 ), Sheet1[Date] )
VAR __MinValue =
    LOOKUPVALUE ( Sheet1[Value], Sheet1[Date], __MinDate )
VAR __MaxDate =
    MAXX ( ALL ( Sheet1 ), Sheet1[Date] )
VAR __MaxValue =
    LOOKUPVALUE ( Sheet1[Value], Sheet1[Date], __MaxDate )
RETURN
    IF (
        CALCULATE ( MIN ( Sheet1[Date] ) ) = __MinDate,
        __MinValue,
        IF ( CALCULATE ( MAX ( Sheet1[Date] ) ) = __MaxDate, __MaxValue, BLANK () )
    )

Capture.PNG

 

You'll have to be sure to set the X-axis as "Continuous" instead of "Categorical" or you will only get the starting and ending points.  Also, depending on your actual data set, the "ALL" function might have to be tweaked (using KEEPFILTERS or the like).

 

Hope this helps,

David

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.