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
andrew_hardwick
Helper III
Helper III

How to calculate Tickets Opened and resolved in the same day

I have a table showing the number of tickets opened on a given date and also resolved on that same date. What I am trying to find now is the number where the opened date and the resolved date are the same. The output should look similar to below.

 

 OpenedResolved Same Day
1/9/201854
2/9/20184439
3/9/2018260127
4/9/201821476
5/9/201813753
6/9/201813849
7/9/20189947
8/9/201822
9/9/201833

 

I have tried DAX like below

 

ResolvedSameDay = CALCULATE([Opened],Incident[OpenDate]=Incident[ResolvedDate])

 

But it finds the OpenDate field but will not accept the ResolvedDate field even though it does exist.

1 ACCEPTED SOLUTION
affan
Solution Sage
Solution Sage

Hi @andrew_hardwick

 

You can use the follwoing measure 

 

ResolvedSameDay = 
CALCULATE(COUNTA(Incident[OpenDate]),FILTER(Incident,CALCULATE(MAX(Incident[OpenDate]),ALLEXCEPT(Incident,Incident[OpenDate]))=Incident[ResolvedDate]))

 

I have tested the same and I got the below result

Resolved same day1.png

 

Resolved same day.png

 

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

 

View solution in original post

8 REPLIES 8
affan
Solution Sage
Solution Sage

Hi @andrew_hardwick

 

You can use the follwoing measure 

 

ResolvedSameDay = 
CALCULATE(COUNTA(Incident[OpenDate]),FILTER(Incident,CALCULATE(MAX(Incident[OpenDate]),ALLEXCEPT(Incident,Incident[OpenDate]))=Incident[ResolvedDate]))

 

I have tested the same and I got the below result

Resolved same day1.png

 

Resolved same day.png

 

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

 

Hi @affan, that worked great, thanks!

Hi @andrew_hardwick,

 

If your problem is resolved with my solution, please mark it as accepted so the thread is closed.

 

Regards

Affan

Ashish_Mathur
Super User
Super User

Hi,

 

What does your base data look like?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
HotChilli
Super User
Super User

Something like

SUMMARIZECOLUMNS(
        Incident[OpenDate],
        "Calls Opened", COUNT(Incident[OpenDate]),
        "Call Resolved Same Day", COUNTX(
        				FILTER(Incident, Incident[ResolvedDate] = Incident[OpenDate]), Incident[OpenDate])
        )

Hi @HotChilli I tried to create this as a measure and a column, but I got the error The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.

@HotChilliprovided a complete query.

 

The expression you want to add as measure is the following:

Incident resolved on the same day = COUNTX(
    FILTER(Incident, Incident[ResolvedDate] = Incident[OpenDate])
            , Incident   [OpenDate]
    )
)

Alternatively, you could also add a new column to your model:

Same day resolution = IF(Incident[ResolvedDate] = Incident[OpenDate]; 1)

... And sum it in a measure.

The DAX i've written creates a new table

 

Go to Modelling->New Table

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.