Calculated Field Advice

donnalouiseb74

New Member
Joined
Nov 16, 2015
Messages
4
Hi Following on from my post about SLAs I think I need to do this via a calculated field so I can use this as KPI field.

So... I think I need to something like this = If(Count([Ticket_CloseMonthYear]) && Count([Ticket_WithinCloseSLA)=1)... then I get run out of ideas... how do I divide the results of the counts to give me a percentage which I could express as a within SLA MM YY and out SLA MM YY

If it would was writing this out by hand, I would do the following...Tickets Closed Nov 2015 within SLA/Total Tickets Closed Nov 2015* 100 = November within SLA.

I need the month expression so I can track historical performance!

Any advice would be greatfully recieved.

Thanks
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Total Tickets := COUNTROWS(Tickets)
Total Tickets in SLA := CALCULATE([Total Tickets], Tickets[WithinSLA] = 1)
Tickets in SLA % := DIVIDE([Total Tickets in SLA], [Total Tickets])
 
Upvote 0

Forum statistics

Threads
1,216,525
Messages
6,131,183
Members
449,630
Latest member
parkjun

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