+ Reply to Thread
Results 1 to 5 of 5

Formula to sum the performance by tenure of employees

  1. #1
    Registered User
    Join Date
    10-01-2011
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    13

    Formula to sum the performance by tenure of employees

    I am analyzing the data for my employees, i have prepared a running spreadsheet for their daily performance, which also translates their weekly and monthly performance.Now, i want to bucketize their the employee performance by their tenure.for example what is the total no.of claims the employees between 0-3 months did, how much time they took.How many fields they processed and how many errors they made.
    Similarly for employees between 4-6 months and 7 months - 1 yr and above 1 yr.

    I am enclosing the sheet that i have made, i want the results in row 5,6,7 and 8 for each day. I would help me streamline the current project, any help would be highly appreciated.
    Attached Files Attached Files

  2. #2
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Formula to sum the performance by tenure of employees

    Not quite sure what you are looking for in rows 5,6,7...an individual employees performance, or the whole companies performance?
    If individual employee, is the answer to be based on you selecting their name or id number, or citrix(?) ?
    If whole company, is it supposed to be an average of, a total of or something else?

    A sample of the expected result, and how you arrive/expect to arrive at the result, would definitely help.
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  3. #3
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Formula to sum the performance by tenure of employees

    Try these:

    In cell AT5: =SUMIF($F$11:$F$146,"<=3",AT$11:AT$146)
    In cell AT6: =SUMPRODUCT(($F$11:$F$146>3)*($F$11:$F$146<7)*(AT$11:AT$146))
    In cell AT7: =SUMPRODUCT(($F$11:$F$146>6)*($F$11:$F$146<13)*(AT$11:AT$146))
    In cell AT8: =SUMIF($F$11:$F$146,">12",AT$11:AT$146)

    - Moo

  4. #4
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Formula to sum the performance by tenure of employees

    Those can be copied and pasted under Time, Fields and Errors. Won't work for CPH or % columns though.

    - Moo

  5. #5
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Formula to sum the performance by tenure of employees

    Since you are using Excel 2007, which makes use of SUMIFS, you could also use:

    In AT6: =SUMIFS(AT$11:AT$146,$F$11:$F$146,">3",$F$11:$F$146,"<7")
    In AT7: =SUMIFS(AT$11:AT$146,$F$11:$F$146,">6",$F$11:$F$146,"<13")


    - Moo

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1