SLA Performance advice needed

donnalouiseb74

New Member
Joined
Nov 16, 2015
Messages
4
I'm trying to measure SLA performance, and as automated as possible so idealy the maths caluclation would be SLA compliant tickets/Total Calls. So in my data model I have a field ticket [ticket_withinclosesla] the date field. I'm just struggling with how to write the expression. Ideally I want it to look at the month year, do the SLA calculation and return me a single percentage.

Any one done something similar?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You want say the percentage of calls closed within the agreed period compared to total number of calls?

Something like this should do the trick:

Excel 2010
ABCDEFGHIJKL
1Ticket NrDate startedDate ClosedDurationAgreedOverMonthCounts OverTotal Tickets% On Time
2101-Aug06-Aug512001-Aug1333%
3205-Aug21-Aug1612101-Sep1250%
4312-Aug18-Aug612001-Oct2450%
5403-Sep05-Sep212001-Nov
6504-Sep21-Sep17121
7607-Oct24-Oct17121
8708-Oct10-Oct2120
9814-Oct18-Oct4120
10918-Oct02-Nov15121

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
SLA

Worksheet Formulas
CellFormula
I2=SUMIF($B$2:$B$10,"<"&H3,$F$2:$F$10)
J2=COUNTIF($B$2:$B$10,"<"&H3)
K2=I2/J2
I3=SUMIF($B$2:$B$10,"<"&H4,$F$2:$F$10)-SUM($I$2:I2)
J3=COUNTIF($B$2:$B$10,"<"&H4)-SUM($J$2:J2)
K3=I3/J3
I4=SUMIF($B$2:$B$10,"<"&H5,$F$2:$F$10)-SUM($I$2:I3)
J4=COUNTIF($B$2:$B$10,"<"&H5)-SUM($J$2:J3)
K4=I4/J4
D2=C2-B2
D3=C3-B3
D4=C4-B4
D5=C5-B5
D6=C6-B6
D7=C7-B7
D8=C8-B8
D9=C9-B9
D10=C10-B10
F2=IF(D2>E2,1,0)
F3=IF(D3>E3,1,0)
F4=IF(D4>E4,1,0)
F5=IF(D5>E5,1,0)
F6=IF(D6>E6,1,0)
F7=IF(D7>E7,1,0)
F8=IF(D8>E8,1,0)
F9=IF(D9>E9,1,0)
F10=IF(D10>E10,1,0)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Thanks for the answer, I'm struggling to make this work on in a calculated field in PowerPivot with the field names rather than the cell references.
 
Upvote 0
sorry, I know nothing of Powerpivot. But the formulas should work with named ranges as well.
 
Upvote 0

Forum statistics

Threads
1,214,999
Messages
6,122,645
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top