Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
How can I compute the resolution time per ticket category and status category?
These are the cases:
1. Time created (RESOLVED) - Time created (IN PROGRESS)
2. (Time created (PENDING) - Time created (IN PROGRESS))+(Time created (RESOLVED) - Time created (IN PROGRESS))
3. (Time created (PENDING) - Time created (IN PROGRESS))+(Time created (PENDING) - Time created (IN PROGRESS)) + (Time created (RESOLVED) - Time created (IN PROGRESS))
@marbi See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395....
The basic pattern is:
Column =
VAR __Current = [Value]
VAR __PreviousDate = MAXX(FILTER('Table','Table'[Date] < EARLIER('Table'[Date])),[Date])
VAR __Previous = MAXX(FILTER('Table',[Date]=__PreviousDate),[Value])
RETURN
__Current - __Previous
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.