Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
Hi v-shex-msft,
Thanks for your reply. Please find my below tables data.
Table A : Incident Table
IncidentId | CreationDate | Status |
10605331 | 2/28/2019 4:16:58 PM | INPROGRESS |
10500578 | 2/28/2019 3:52:21 PM | INPROGRESS |
10500558 | 1/10/2019 3:52:21 PM | INPROGRESS |
10697056 | 09/21/2018 3:46:16 PM | INPROGRESS |
10635516 | 2/28/2019 3:30:45 PM | INPROGRESS |
Table B : Postmortem Data
IncidentId | SourceCreateDate | Status |
8193170 | 2019-02-28 16:48:01.0000000 | RESOLVED |
4058843 | 2018-02-28 16:48:00.0000000 | ACTIVE |
405884398 | 2019-01-27 16:48:00.0000000 | RESOLVED |
81930031 | 2018-02-21 16:48:00.0000000 | ACTIVE |
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.
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
218 | |
88 | |
83 | |
65 | |
56 |