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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
RichOB
Post Patron
Post Patron

Measure to calculate days open

Hi, I have a helpdesk dashboard, and I need to count the open tickets that have been open for 5 days or longer. What measure would calculate that, please? For example, I would need the below to show in a card visual as 4.

 

TicketDays Open
12
26
35
47
58
610


Thanks

2 ACCEPTED SOLUTIONS
bhanu_gautam
Super User
Super User

@RichOB , try using

DAX
OpenTickets5DaysOrMore =
CALCULATE(
COUNTROWS('TableName'),
'TableName'[Days Open] >= 5
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

mazizmacf
Frequent Visitor

Open Tickets 5 Days or More = CALCULATE ( COUNTROWS ( 'YourTableName' ), FILTER ( 'YourTableName', 'YourTableName'[Days Open] >= 5 ) )

View solution in original post

5 REPLIES 5
v-sathmakuri
Community Support
Community Support

Hi @RichOB ,

 

I hope this information proves helpful. Feel free to reach out if you have any further questions or would like to discuss this in more detail. If responses provided answers your question, please accept it as a solution so other community members with similar problems can find a solution faster.

 

Thnak you!!

v-sathmakuri
Community Support
Community Support

Hi @RichOB ,

 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.

 

Thank you!!

v-sathmakuri
Community Support
Community Support

Hi @RichOB ,

 

Thank you for reaching out to Microsoft Fabric Community.

Thank you @mazizmacf  and @bhanu_gautam  for prompt response.

 

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

mazizmacf
Frequent Visitor

Open Tickets 5 Days or More = CALCULATE ( COUNTROWS ( 'YourTableName' ), FILTER ( 'YourTableName', 'YourTableName'[Days Open] >= 5 ) )
bhanu_gautam
Super User
Super User

@RichOB , try using

DAX
OpenTickets5DaysOrMore =
CALCULATE(
COUNTROWS('TableName'),
'TableName'[Days Open] >= 5
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors