Calculating KPIs by month/week

excelbeginner3

New Member
Joined
Nov 17, 2016
Messages
3
Hi all, I'm relatively new to Excel (using 2016 version) and trying my best to figure out the best way to complete a task for my manager - so here's my issue...

I've been asked to publish a daily insight into my department's activities and whether we are meeting our KPIs in terms of days taken to complete each task.

There are three tasks in total that we are interested in: general enquiries (aimed to be completed in 2 days), quotations (also 2 days) and complaints (1 day).


the spreadsheet that I've created so far calculates days taken between receipt of task and the completion of that task. I've also now created a pivot table that shows the average time taken for each task. However, these averages are from the very first entry in the spreadsheet. We would like to measure going forwards how we are getting that time down.

I would like to know how we are hitting out KPIs each week/month based on the column "Date received in department" against "days taken to complete".

Any advice would be welcome! I've tried following the tutorials but unfortunately I'm having no luck at all. Thanks in advance.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Assuming your Data looks like this:


Excel 2010
ABCD
1TaskStartedFinisheddays taken to complete
2general enquiries01/11/201602/11/20161
3general enquiries03/11/201604/11/20161
4general enquiries10/11/201613/11/20163
5general enquiries17/11/201620/11/20163
6quotations01/11/201603/11/20162
7quotations03/11/201605/11/20162
8quotations10/11/201612/11/20162
9quotations17/11/201618/11/20161
10quotations17/11/201620/11/20163
Sheet1


To group by Week you could just add a WeekNum column:


Excel 2010
ABCDE
1TaskStartedFinisheddays taken to completeWeekNo
2general enquiries01/11/201602/11/2016145
3general enquiries03/11/201604/11/2016145
4general enquiries10/11/201613/11/2016346
5general enquiries17/11/201620/11/2016347
6quotations01/11/201603/11/2016245
7quotations03/11/201605/11/2016245
8quotations10/11/201612/11/2016246
9quotations17/11/201618/11/2016147
10quotations17/11/201620/11/2016347
11complaints01/11/201604/11/2016345
Sheet1
Cell Formulas
RangeFormula
E2=WEEKNUM(B2,2)


and use that field in your Pivot Table Column Labels field.


Excel 2010
ABCDEFGHIJ
3Average of days taken to completeColumn Labels
4Row Labels40414243454647Grand Total
5complaints32312.5312.25
6general enquiries11331332
7quotations22222222
8Grand Total21.6666666672.66666666721.8333333332.66666666722.076923077
9
Sheet4


To Group by Month add the Started Date to the Column Labels Field and then use the Pivot Table Group By functionality.

Excel 2010
ABCDE
3Average of days taken to completeColumn Labels
4Row LabelsOctNovGrand Total
5complaints2.252.252.25
6general enquiries222
7quotations222
8Grand Total2.0769230772.0769230772.076923077
9
Sheet4
 
Upvote 0

Forum statistics

Threads
1,215,343
Messages
6,124,402
Members
449,156
Latest member
LSchleppi

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