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
Anonymous
Not applicable

Count tickets opened and closed in the same month

Hi all 

 

I need to create a count of all ticket where the creation and closure date occurs in the same month.

 

If the reference ID was created between 01/01/2020 and 31/01/2020 and the closure date is between 01/01/2020 and 31/01/2020 then count that row. 

 

My data table has a reference id, created date and closed date.  This is linked to my date table via a 1 to many relationships from the calendar date to the data creation date. 

 

I've tried a few DAX measure but the count isn't right, I think it's due to the date relationship.  I can't remove that relation as its being used for other measures. 

 

Can anyone help?

 

thanks

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, Try below

 

Measure = CALCULATE(COUNT(Reference[ReferenceID]), FILTER(Reference, MONTH(Reference[Created_Date]) = MONTH(Reference[Closed_Date]) && YEAR(Reference[Created_Date]) = YEAR(Reference[Closed_Date])))
 
 

sample.PNG

 

 

Did I answer your question? If Yes, Give me a Kudo

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi, Try below

 

Measure = CALCULATE(COUNT(Reference[ReferenceID]), FILTER(Reference, MONTH(Reference[Created_Date]) = MONTH(Reference[Closed_Date]) && YEAR(Reference[Created_Date]) = YEAR(Reference[Closed_Date])))
 
 

sample.PNG

 

 

Did I answer your question? If Yes, Give me a Kudo

Greg_Deckler
Super User
Super User

First, sample data would help. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Second, see if Open Tickets helps: https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/td-p/409364


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.