The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi there,
How do I display tickets that are open for > 3 days in as a card value?
Ticket ID | Subject | Status | Source | Type | Created Time | Resolved Time |
These are the column names for the Tickets table, I know how to filter to get Open tickets but can't work out how to find tickets open for more than 3 days.
This is how I filter to get the Open tickets:
Open Tickets =
CALCULATE (
COUNT ('October Tickets'[Ticket ID]),
FILTER (
ALL ('October Tickets'),
'October Tickets'[Status] = "Open"
)
)
Thanks in advance
Solved! Go to Solution.
Hi @Caiz
To your table add a column 'open for > 3 days' = IF(DATEDIFF('Table'[Created Time],[Resolved Time],DAY) > 3, "Yes", "No")
Then to your formula
Open Tickets =
CALCULATE (
COUNT ('Sheet8'[Ticket ID]),
FILTER (
ALL ('Sheet8'),
'Sheet8'[Status] = "Open" && 'Sheet8'[open for > 3 days]= "Yes"
)
)
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Hi @Caiz
To your table add a column 'open for > 3 days' = IF(DATEDIFF('Table'[Created Time],[Resolved Time],DAY) > 3, "Yes", "No")
Then to your formula
Open Tickets =
CALCULATE (
COUNT ('Sheet8'[Ticket ID]),
FILTER (
ALL ('Sheet8'),
'Sheet8'[Status] = "Open" && 'Sheet8'[open for > 3 days]= "Yes"
)
)
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Regards
Amine Jerbi
If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
18 | |
18 | |
17 | |
15 | |
13 |
User | Count |
---|---|
36 | |
34 | |
19 | |
18 | |
15 |