The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
Ticket | Days Open |
1 | 2 |
2 | 6 |
3 | 5 |
4 | 7 |
5 | 8 |
6 | 10 |
Thanks
Solved! Go to Solution.
@RichOB , try using
DAX
OpenTickets5DaysOrMore =
CALCULATE(
COUNTROWS('TableName'),
'TableName'[Days Open] >= 5
)
Proud to be a Super User! |
|
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!!
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!!
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.
@RichOB , try using
DAX
OpenTickets5DaysOrMore =
CALCULATE(
COUNTROWS('TableName'),
'TableName'[Days Open] >= 5
)
Proud to be a Super User! |
|