+ Reply to Thread
Results 1 to 8 of 8

Excel formula for a 2010 template - Employee Attendance Tracker

  1. #1
    Registered User
    Join Date
    04-12-2016
    Location
    Motorcity
    MS-Off Ver
    2010
    Posts
    5

    Excel formula for a 2010 template - Employee Attendance Tracker

    Hi,

    I need help editing a 2010 template.

    I started editing a pre-loaded excel template in 2010 version named "Employee Attendance/Leave Tracker." You can access this template directly from excel or it can be found here: http://www.bluelayouts.org/template/1785.html

    On the top right hand corner, there's a drop box that allows a user to select an employee. Once an employee is selected, the calendar is automatically changed based on the pre-recorded data.

    What I need help is to create another option inside the "Select an Employee" drop box, where it will combine ALL employees, then automatically change the calendar as well as the boxes on the bottom of the pages. The boxes are populated using formulas.

    Employee-Tracking-template-8865.jpg


    Please help. Thank you in advance.
    Last edited by mkcatt; 04-13-2016 at 12:24 AM. Reason: added template location and image

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,719

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Sorry - my AV is blocking access to that site. Please attach the workbook here.

    Looking at the image, however, it might not be as easy as you think: for example, the colour coding is fine for one employee, but what is going to happen when you have several 'events' happening on the same day? I think you are probably going to need to create a separate dashboard for the information about all employees, because the data is going to need to be processed altogether differently.

    EDIT: Yes, the template is available in the latest version of Excel.
    Last edited by AliGW; 04-13-2016 at 02:12 AM.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,719

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Attached is a version of the file with an extra tab added. I've adapted the formulae for the key statistics and removed the calendar (as the colour-coding doesn't work for more than one employee at once). I have not thoroughly checked it, but it seems to be working. Does this give you enough information? The tab shows information for all employees.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    04-12-2016
    Location
    Motorcity
    MS-Off Ver
    2010
    Posts
    5

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Thanks Ali for your response. I see what you're saying about the calendar. So now, I am thinking how to create a report showing all employees. I figure to create a line chart with x-axis as 'date' and y axis as 'time', then measuring by employees. Do you think you can help with this?

    Your ideas and help are greatly appreciated!

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,719

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Did you look at my attachment?

  6. #6
    Registered User
    Join Date
    04-12-2016
    Location
    Motorcity
    MS-Off Ver
    2010
    Posts
    5

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Yes, I did. Though, my need is a little bit complex. Please see attached.
    1.PNG
    2.PNG


    I am trying to create almost the same as the calendar. But this time, it is actually calculating how many employees. I need a formula for the following tasks:

    (1) to connect the drop-down "select a month" to row 9. So it automatically populate the month and pull the information from the "Employee Leave Tracker" tab. So, if user select February, then rows 9 & 10 data will be automatically updated. Note that this should also be connected with the year.

    (2) The information that I need to populate in row 10 are the count of employees working for the day. For instance, on January 1, there were 3 employees working, etc...


    >>>Update: I was able to populate this automatically. However, my formula is not connected to the "Select a Month" drop-down list. When I select February on the drop down, the values remain the same :-( I may have been missing the valSelEmployee but not sure how to incorporate it to this tab since it is a little different than the 'calendar view' tab.

    >>> The cell formula I used is =SUMIFS(tblLeave[Days],tblLeave[Start Date],"="&DATE($AI$5,1,I9),tblLeave[Time-In],">"(7,9,0))


    (3) Lastly, is to create a line graph as a report. "Time-In" will be the y-axis and "Start Date" will be the x-axis. The graph will display measuring employees. So the points on the graph will have the labels Employee 1, Employee 2, Employee 3, etc...

    I am playing around it, trying to figure it out. I hope you can help me.

    Thanks!
    Attached Files Attached Files
    Last edited by mkcatt; 04-17-2016 at 06:18 PM. Reason: Partially resolved #2

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    See attached:

    In Sheet "Reports"

    in D9

    =DATE(AI5,MONTH(1&valSelSource),1)

    Sets date in D9 to 01/01/year with formatted as "mmmm"

    in I9 =D(

    in J9 across ... =IF(OR(I9+1>EOMONTH($I$9,0),I9=0),0,I9+1) set all cells formatted as "d"

    Dates past end of month are set to 0

    in I10 and all cells across

    =COUNTIFS(tblLeave[Start Date],">=" &$D$9,tblLeave[End Date],"<=" &EOMONTH($D$9,0),tblLeave[Start Date],"<=" & Reports!I$9,tblLeave[End Date],">=" &Reports!I$9)
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    08-22-2018
    Location
    North West, England
    MS-Off Ver
    10
    Posts
    1

    Re: Excel formula for a 2010 template - Employee Attendance Tracker

    Hi Ali

    I am trying to alter this spreadsheet so that it registers April through to March rather than January to December. Can you let me know what the formula would be? when I change the month it takes out the number data from under the days of the week

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Need help editing employee attendance tracker
    By notnutts in forum Excel General
    Replies: 7
    Last Post: 07-12-2019, 03:28 PM
  2. RE: Please Help to advise -Employee Attendance Tracker
    By joannewoon in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-17-2016, 02:51 PM
  3. [SOLVED] Employee Attendance Template
    By mcanny in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-18-2016, 01:07 PM
  4. Employee Vacation and Attendance Tracker-VBA Macro
    By emmyem21 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-18-2015, 10:20 AM
  5. Absence Tracker Template by employee
    By sabrinaxiomara in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 11-07-2015, 09:44 PM
  6. [SOLVED] Employee attendance tracker
    By akash kothari in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 09-11-2013, 08:08 AM
  7. [SOLVED] Employee attendance tracker
    By sanjeevi888 in forum Excel - New Users/Basics
    Replies: 5
    Last Post: 06-19-2012, 12:54 PM

Tags for this Thread

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