Results 1 to 9 of 9

Attendance Tracking with Occurrence Points over 6 Month Rolling Period

Threaded View

  1. #8
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    3,185

    Re: Attendance Tracking with Occurrence Points over 6 Month Rolling Period

    That's the beauty of the Excel Table and the Summary sheet - you just add the employee to the table and the table expands and the Summary sheet will automatically include them. To not include vacation or sick days in the Total, use this formula in cell A9 on Summary page:
    =LET(Names,UNIQUE(FILTER(Table1[Name],(Table1[Date]>=B5)*(Table1[Date]<=B6),"None")),
    Vacation,COUNTIFS(Table1[Reason],B8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6),
    Sick,COUNTIFS(Table1[Reason],C8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6),
    Unexcused,COUNTIFS(Table1[Reason],D8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6),
    NCNS,COUNTIFS(Table1[Reason],E8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6)*3,
    Tardy,COUNTIFS(Table1[Reason],F8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6)/2,
    LateReturn,COUNTIFS(Table1[Reason],G8,Table1[Name],Names,Table1[Date],">="&B5,Table1[Date],"<="&B6)/2,
    Total,Unexcused+NCNS+Tardy+LateReturn,
    HSTACK(Names,Vacation,Sick,Unexcused,NCNS,Tardy,LateReturn,Total))
    I'll attach the workbook with this change as well.

    All names that have an occurrence within the date range will automatically show up on the Summary Page. If you have a situation where they are not, please attach the workbook so I can see what's happening.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Attendance Tracker with a rolling six month period?
    By taylorsm in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 12-16-2019, 03:04 AM
  2. Replies: 2
    Last Post: 06-15-2017, 10:31 AM
  3. Occurrence Points Attendance Tracker - rolling year
    By nicnaq in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-17-2017, 01:47 PM
  4. Need Help Rolling 6/12 Month Attendance Point Tracking
    By khintze in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-06-2015, 05:46 PM
  5. Replies: 1
    Last Post: 10-24-2014, 09:57 PM

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