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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sarath5140
Helper I
Helper I

Show trend analysis on a line chart

Hi, please help me in solving my below problem.

I have two tables one is incident table and other table is incident postmortem table.
Both the tables are having Id and date time column and these tables are not related. Now, i want to represent them in a line to see the trend for last 6 months till today in a line chart and axis will be my month and values will be the count of ticket ids for both the tables. How can i acheive this, please throw some insights.
3 REPLIES 3
v-shex-msft
Community Support
Community Support

Hi @sarath5140 ,

 

You can create a calendar table as axis of line chart, then write a measure to lookup and summary records from two tables based on current calendar date and use in value fields. After these, you can enter to analytics panel and turn on trend line features.

 

If you are confused on coding formula, please provide some sample data with expect result to help us clear your requirement and do test and coding formula on it.


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

 

 

 

IncidentIdCreationDateStatus
106053312/28/2019 4:16:58 PMINPROGRESS
105005782/28/2019 3:52:21 PMINPROGRESS
105005581/10/2019 3:52:21 PMINPROGRESS
1069705609/21/2018 3:46:16 PMINPROGRESS
106355162/28/2019 3:30:45 PMINPROGRESS

 

Table B : Postmortem Data

 

IncidentIdSourceCreateDateStatus
81931702019-02-28 16:48:01.0000000RESOLVED
40588432018-02-28 16:48:00.0000000ACTIVE
4058843982019-01-27 16:48:00.0000000RESOLVED
819300312018-02-21 16:48:00.0000000ACTIVE
   

 

Please help me with the Dax formulas and measures and to acheive the trend for both the tables to show the incidentid count vs month trend in line chart.

 

Thanks

HI @sarath5140 ,

 

You can take a look at following sample.

 

Measure formulas:

InProgress =
VAR currDate =
    MAX ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( VALUES ( Incident[IncidentId] ) ),
        FILTER (
            ALLSELECTED ( Incident ),
            [CreationDate]
                >= DATE ( YEAR ( currDate ), MONTH ( currDate ) - 6, DAY ( currDate ) )
                && [CreationDate] <= currDate
                && [Status] = "INPROGRESS"
        )
    )


Resolve = 
VAR currDate =
    MAX ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( VALUES ( Postmortem[IncidentId] ) ),
        FILTER (
            ALLSELECTED ( Postmortem ),
            [SourceCreateDate]
                >= DATE ( YEAR ( currDate ), MONTH ( currDate ) - 6, DAY ( currDate ) )
                && [SourceCreateDate] <= currDate
                && [Status] = "RESOLVED"
        )
    )

Create a line chart with calendar date and two measures, then add a trend line and turn off combine series option.

3.png

 

Regards,

Xiaoxin Sheng

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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