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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors