Forum Discussion
Unknowncharacte
Helper III
2 years agoTime Intelligence Question
Hi, I need to create a measure to calculate # of cases that were opened for longer than 90 days and visualize it on a historical line chart. So, something like if time frame between date open an...
- 2 years ago
Hello, Unknowncharacte ,
try something like this:
LongerThan90 = COUNTROWS(FILTER('Fact Table', ( IF( ISBLANK('Fact Table'[Date Closed]), TODAY(), 'Fact Table'[Date Closed]) - 'Fact Table'[Date Opened] ) > 90))
Greg_Deckler
Community Champion
2 years agoUnknowncharacte Should be able to modify Open Tickets for this purpose:
- Unknowncharacte2 years ago
Helper III
Thank you so much for the reference!