Closed Thread
Results 1 to 24 of 24

Conditional Formatting for Attendance Tracking

  1. #1
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Conditional Formatting for Attendance Tracking

    Attached below is a sample of an attendance tracking document I am creating, to replace the current excel document used to track certain instances with attendance. I figured out the layout of the document, but I'm having trouble figuring out the formulas to be used with conditional formatting as a method of "flagging" the employee when he/she meets a certain number of intances in a given category. The layout is simple; if the employee is either absent, clocks in early, clocks out late, or misses a punch, then the number of instances is listed in the document, under the appropriate row. The document tracks thses numbers on a weekly basis. I need the left-most cell for each row to turn red if the employee is above the allowed number of instances. The rules are as follows:

    Early Out/Clock in Late(Early Out and Clock in Late are to be treated as combined instances in the formula):

    =SUM(_4 week period_)>1

    Reads: 2 EO/CIL in a month period

    OR

    =SUM(_12 month(54 week period)_)>6

    Reads: 7 EO/CIL in a 12 month period



    Missing Punch :

    =SUM(_12 week period_)>1

    Reads: 2 Missed Punches in a 3 month period

    The absent rule is based on a 12 month period, so that one was easy to figure out. But the listed rules need to work within the period of time from the first instance, i.e. if I clocked in late a day in the 3rd week of the year, my 4 week period (and above 6 in a 12 month period) would start from that perticular point. Please help me figure this out, as I am having some trouble. Thank you.
    Attached Files Attached Files

  2. #2
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Hi,

    Enter this rule for your Conditional Formatting (applies to all 4 of your cells):

    =OR(ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$9,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,2,4)),0)),SUM($C$9:$BB$10)>6,ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$12,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,1,12)),0)),SUM($C$11:$BB$11)>6)

    Hope that helps

    Edit: This will colour ALL 4 cells if ANY of the rules is true. If you want, you can just split the separate conditions (clauses of this OR statement - you should be able to work this out) into four different Conditional Formats so that they each colour only the relevant cell.
    Last edited by XOR LX; 05-13-2013 at 06:12 PM.
    Click * below if this answer helped

    Advanced Excel Techniques: http://excelxor.com/

  3. #3
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Quote Originally Posted by XOR LX View Post
    Hi,

    Enter this rule for your Conditional Formatting (applies to all 4 of your cells):

    =OR(ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$9,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,2,4)),0)),SUM($C$9:$BB$10)>6,ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$12,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,1,12)),0)),SUM($C$11:$BB$11)>6)

    Hope that helps

    Edit: This will colour ALL 4 cells if ANY of the rules is true. If you want, you can just split the separate conditions (clauses of this OR statement - you should be able to work this out) into four different Conditional Formats so that they each colour only the relevant cell.

    Thank you so much. It works like a charm.

    Now, this attendance tracking calendar will function more as a "rolling" calendar. So, for instance, if someone clocked in late the last week of December 2013, their 12 month period would begin then and end the last week of December 2014. How would I modify this equation to function as this "rolling" calendar I'm proposing? I was thinking of using the same workbook and separating the worksheets by year,(i.e. 2013, 2014, 2015, etc).

    IF you need the rule I didn't post earlier for being "absent", here it is:

    Absent: =SUM(_12 Month Period(52 week_)>6

    Reads: 7 Absences in a 12 month period

    Also, could you break up this formula so it works with each cell? I'm not exactly sure how to break it up myself. If at all possible I would need the final formula broken up into 3 parts for Early Out/Clock in Late, Absent, and Missed Punches AND a combined formula. Thanks again. This is a really big help.
    Last edited by SciGuy; 05-14-2013 at 09:03 AM.

  4. #4
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    But you'd already put that rule in the Conditional Formattting yourself ("The absent rule is based on a 12 month period, so that one was easy to figure out"), so I just added it in to my combined version.

    This is your formula for Conditional Formatting which applies to cells A9:A10 (Early/Late):

    =OR(SUM($C$9:$BB$10)>6,ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$9,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,2,4)),0)))

    This is your formula for Conditional Formatting which applies to cell A11 (Absent):

    =SUM($C$11:$BB$11)>6

    This is your formula for Conditional Formatting which applies to cell A12 (Missing Punches):

    =ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$12,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,1,12)),0))

    As for rolling on the years, it would increase the complexity quite a bit to adapt this solution to work with more than one worksheet. The alternative would be to extend your dates to the right, which would make things simpler (i.e. you could extend the range in the COUNTA($C$6:$BB$6) part (and obviously also in the simpler SUM formulae) to some appropriate column reference beyond or equal to that which contains your data – though I might add that it’s usually not best Excel practice to set range references equal to whole rows or columns.

    I confess though that I'm always slightly surprised to see worksheets arranged this way (i.e. 'landscape') - why didn't you lay it out with the E, L, A, MP, etc. as column headers? Excel is always more user-friendly to the portait layour in my opinion (hence the ratio of 64:1 in its favour in terms of number of cells).

    Anyway, whatever you decide, all the best.

    Regards

  5. #5
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Quote Originally Posted by XOR LX View Post
    But you'd already put that rule in the Conditional Formattting yourself ("The absent rule is based on a 12 month period, so that one was easy to figure out"), so I just added it in to my combined version.

    This is your formula for Conditional Formatting which applies to cells A9:A10 (Early/Late):

    =OR(SUM($C$9:$BB$10)>6,ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$9,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,2,4)),0)))

    This is your formula for Conditional Formatting which applies to cell A11 (Absent):

    =SUM($C$11:$BB$11)>6

    This is your formula for Conditional Formatting which applies to cell A12 (Missing Punches):

    =ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$12,,ROW(INDIRECT("1:"&COUNTA($C$6:$BB$6)-3))-1,1,12)),0))

    As for rolling on the years, it would increase the complexity quite a bit to adapt this solution to work with more than one worksheet. The alternative would be to extend your dates to the right, which would make things simpler (i.e. you could extend the range in the COUNTA($C$6:$BB$6) part (and obviously also in the simpler SUM formulae) to some appropriate column reference beyond or equal to that which contains your data – though I might add that it’s usually not best Excel practice to set range references equal to whole rows or columns.

    I confess though that I'm always slightly surprised to see worksheets arranged this way (i.e. 'landscape') - why didn't you lay it out with the E, L, A, MP, etc. as column headers? Excel is always more user-friendly to the portait layour in my opinion (hence the ratio of 64:1 in its favour in terms of number of cells).

    Anyway, whatever you decide, all the best.

    Regards

    Yeah, I thought as much that it would complicate things, but I figured I would ask. As far as the landscape setup goes, it's pretty much the way the company wants it to be. I'm just following their guidelines.

    I thought about what you said to try and get the "12 month rolling" function to work, by extending the range of the equation and adding weeks continuing to the next year. Instead of doing that, I just added a column titled "2012 Rolling" and any values from the previous year that need to be carried over, will just be added to that column. Every week as the attendance is updated, whoever enters the data will just have to reduce number in that column manually, depending on the dates of the instances from the previous year. Extending the range and adding more months would make it more complicated, because of the nature of the "rolling" in the attendance tracking. For example, in 2012 if I had an absence in the 3rd and 20th week of the year, two absences would carry over to 2013. But once I pass that 3rd week in 2013, (regardless of any new absences after the 3rd week of 2012), that absence from the 3rd week in 2012 disappears from the count, and now I've just got the absence from the 20th week of 2012 carried over. It would be way too complicated to figure out how to make tracking like that automatic.

    So, I went ahead and updated the spreadsheet to what I assume will be the final format. I tried to change around the formulas to include the new column I added, "2012 Rolling", but I didn't seem to get it right. Would you be able to adjust the formulas one last time, to match this new format?
    I'll attach the new document below. Thanks, and if you have any opinion on the function of this new column, please let me know.
    Attached Files Attached Files

  6. #6
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Hi,

    Ok, so for this 'rolling' years idea the two formulae with the COUNTIF part will be fine if you extend your weeks to the right as their calculations are in no way dependent on 'calendar years', but rather on rolling e.g. 4- or 12-week periods.

    So we just need to do the same with the 52-week (= year) conditions (I extended the ranges to column DJ as well):

    So, for Early/Late your formula becomes:

    =OR(ISNUMBER(MATCH(2,SUBTOTAL(9,OFFSET($C$13,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)-3))-1,2,4)),0)),ISNUMBER(MATCH(7,SUBTOTAL(9,OFFSET(OFFSET($K$13,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)))-1,1,1),0,0,2,52)),0)))

    For Absent, your formula becomes:

    =ISNUMBER(MATCH(7,SUBTOTAL(9,OFFSET(OFFSET($K$16,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)))-1,1,1),0,0,1,52)),0))

    For Missing Punches, you don't indicate a year-based condition, so this will keep rolling as it is and requires no amendments.

    Try these (without your amendments for this "2012 Rolling" column - if you want to go with that I'll have to re-think) and let me know. Oh, and I noticed you’ve added in some new rows in your new version, so I amended the above formulae accordingly (I think!) but obviously haven’t touched the Missing Punches one.

    Regards

  7. #7
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Good thought, but I probably should have mentioned the other reason extending past the initial 52 week range might not work. Once this attendance tracking sheet in done and implemented, it will be handed off to managers, leaders, secretaries, etc. based on department. These people might not be experienced with Excel enough to be able to modify the document beyond just entering data. The reason I mention this is because if this becomes a true rolling calendar, columns will have to be deleted weekly, as not to carry data over that doesn't matter anymore, (i.e., any instances in "week 1" of 2012 will no longer be valid once "week 1" in 2013 starts). At this point the person in charge of the worksheet will have to delete "week one" of 2012 and keep all the data from "week 2" 2012 and on. But, it's still a good idea and I will try and push this when I present the tracking sheet upon completion.

    I updated the Attendance Tracking worksheet with the new formulas, and extended the range to 2014. The extended range is just to get the idea of "12 month rolling" across, though, and most likely will not be keep that way. What I'm most likely going to do is keep a "13 month representation" of the data with the previous 12 months kept in the sheet, and the current month as the right-most column. Ideally, as the data is updated every week, the person in charge will delete the first column of every week, and add a column at the end every week (or 4 weeks ahead of time for each new month). I would like to know, if it's not too much trouble, could you find out the equations I would use if I was to just implement the "rolling 2012" column? I ask, just in case management feels the other idea might be too complicated for the person in charge.

    Also, I noticed something very important with the equations you gave me. If I enter a number greater than the allowed instances for a period of time, the conditional formatting stops working. For example, If I enter "3" missed punches for week 4, the equation doesn't flag, even though it’s above the limit. It's very important that all the equations work for at least “7" instances for each week, as it is possible someone can go above the limit in under a week. This document will only be updated, at the most, weekly.

    I'll upload the current updated file, as I did before. Thanks again, I really do appreciate the help.
    Attached Files Attached Files

  8. #8
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Ah, presumed they had to be 1s in each cell for some reason. No problem - just need to put a SUMPRODUCT in instead. Bear with me...

  9. #9
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Ok,

    Try these. Did it with a simple MAX function instead.

    Early/Late:

    =OR(MAX(SUBTOTAL(9,OFFSET($K$13,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)-3))-1,2,4)))>1,MAX(SUBTOTAL(9,OFFSET(OFFSET($K$13,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)))-1,1,1),0,0,2,52)))>6)

    Absent:

    =MAX(SUBTOTAL(9,OFFSET(OFFSET($K$16,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)))-1,1,1),0,0,1,52)))>6

    Missed Punch:

    =MAX(SUBTOTAL(9,OFFSET($K$17,,ROW(INDIRECT("1:"&COUNTA($K$10:$DJ$10)-3))-1,1,12)))>1

    I'll have to have a think about the other stuff.

    Regards
    Last edited by XOR LX; 05-20-2013 at 02:19 AM.

  10. #10
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Basically this is the same except for that the Conditional Formatting now applies to historical periods, so that in effect it adjusts itself dynamically to check the criteria for up to one year in the past.

    On the idea of having separate tabs for each year, what I've thought is that you keep this running tab for ALL years and simply hide it. You can change the references for the Conditional Formatting to look at this hidden tab.

    Let me know what you think.
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Quote Originally Posted by XOR LX View Post
    Basically this is the same except for that the Conditional Formatting now applies to historical periods, so that in effect it adjusts itself dynamically to check the criteria for up to one year in the past.

    On the idea of having separate tabs for each year, what I've thought is that you keep this running tab for ALL years and simply hide it. You can change the references for the Conditional Formatting to look at this hidden tab.

    Let me know what you think.
    So, just replace the weeks with the starting date for each week? I guess it would be a more accurate way for the person in charge of the form to check a year back from the current date.

    I tested out the sheet, entering in data from weeks prior to 51 weeks from “TODAY”, and it doesn’t seem to be working right for any of the rows. Instead of ignoring numbers before 5/20/2012, it sometimes counts them toward the ones past 5/20/2012, and sometimes it doesn’t count the numbers when it should, (i.e. any week past 3/31/12.) For Missed Punches, it seems to always be looking for the anything more than 1 occurrence within 3 months, no matter how old or new the entry, even if it’s past this current months date. It's a great idea, and probably the easiest to maintain, but currently it's not fuctioning right.

  12. #12
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    I've just checked it again and I cannot replicate any of the errors you are reporting - can you give specific cell references/numbers for some of your failed attempts, or perhaps post your version of the sheet highlighting the errors?

    I trust you worked out that I'd applied the new formulae to 'Doe, Jane' only?

    You don't have to replace anything. Why can't you keep the weeks AND the week start dates?

    Regards

  13. #13
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    I entered in data around where it starts to include numbers from dates that shouldn't apply. For Missed Punches, I entered data representing 2 different instances in which the cell will be flagged. Also, sampling numbers a weeks before the current week, after the current week and on the current week, seems to be messing up too. Here's an attachment with the examples.
    Attached Files Attached Files

  14. #14
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Can you change the formula in the Name Manager for Dates from ='2013'!$K$7:$DJ$7 to ='2013'!$A$7:$DJ$7 and let me know?

    Also, I notice you have inputted some values corresponding to dates - such as 14th July 2013 - which are in the future (!), which of course is never possible! (Unless you need this human error accounting for in the sheet as well?!)
    Last edited by XOR LX; 05-20-2013 at 01:06 PM.

  15. #15
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Ok, now it seems to be working. That name manager thing is something I've never even worked with before. And yes, I mentioned dates past the current date to account for human error, but it's not important to bother with that. The person inputting the data will just have to recheck everything, just in case something is flagged by accident.

    Now, is the "Name Manager" formula for dates something that is going to have to be adjusted at any point whatsoever? If not, is their anyway to make it so any formulas won't have to be updated? This way, I could just have the person in charge hide any of the columns they want and add as much as they want without incident.

    If that isn't possible, then what I would most likely have done is just have a 57 week calendar, like the previous version with the MAX forumlas. This way, I'll just have the person in charge delete a month and then add a month, as long as they have enough columns to fill out the preset reference range of 57 weeks.

  16. #16
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Basically the Name Manager allows you to create names for formulas and ranges. So here the Named Range Dates is simply the range of cells A7:DJ7 in the 2013 tab, i.e. the extra row of dates I entered.

    Obviously if the day arrives when you will be going beyond 22nd December 2013 (column DJ) then this will need updating. Alternatively, it's also quite straightforward to make it dynamic, so that you won't need to do anything: if you change the formula for Dates to:

    =OFFSET('2013'!$A$7,0,0,1,COUNT('2013'!$7:$7))

    then, if you highlight this, you'll notice that Excel will put dotted lines around the range in your tab which it is defining, and this should be A7:DJ7, just as previously. The difference is that, whereas before this range was static, the OFFSET part of the formula now makes it dynamic. (In fact, the range responds automatically according to the number of entries in row 7, so, if you extend this further to the right, the Defined Range will increase in size appropriately.)

    Regards

  17. #17
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Quote Originally Posted by XOR LX View Post
    Basically the Name Manager allows you to create names for formulas and ranges. So here the Named Range Dates is simply the range of cells A7:DJ7 in the 2013 tab, i.e. the extra row of dates I entered.

    Obviously if the day arrives when you will be going beyond 22nd December 2013 (column DJ) then this will need updating. Alternatively, it's also quite straightforward to make it dynamic, so that you won't need to do anything: if you change the formula for Dates to:

    =OFFSET('2013'!$A$7,0,0,1,COUNT('2013'!$7:$7))

    then, if you highlight this, you'll notice that Excel will put dotted lines around the range in your tab which it is defining, and this should be A7:DJ7, just as previously. The difference is that, whereas before this range was static, the OFFSET part of the formula now makes it dynamic. (In fact, the range responds automatically according to the number of entries in row 7, so, if you extend this further to the right, the Defined Range will increase in size appropriately.)

    Regards
    Thank you so much! I'll take what I got here, and present it tomorrow. I'll let you know how it goes. Thanks again! You've been a very big help.

  18. #18
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    No worries. Best of luck with the presentation.

  19. #19
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    I presented what we put together so far, and they seemed to like this most recent version of conditional formatting. So, I am going to stick with using the historical formulas. The only change we made was using the date references as "end week" dates, instead counting them as the beginning of the week. This just meant shifting the weeks over the right by one week. There are just a few more things I need help with before it is finalized.

    I need a formula to have the "YTD" column count the most recent 52 weeks.

    The conditional formulas need to be changed to accept unlimited entries(employees). I noticed in the formulas that it cuts off at A77 which allows me 11 entries. I would need the formula the be set up for individual employee add-ons.

    Also, I tried to drag the cells down, with the conditional formatting to copy the formulas over to other employee entries. But, I noticed the references in the formulas don't change to the appropriate rows. Is there any way to get the references to change when I drag the formatting over, instead of entering it in by hand for each employee record?

    Thanks again for your time. This should hopefully be the last of the help I will need. I'll upload the final version of the worksheet so you may look at it and make any changes, if needed.
    Attached Files Attached Files

  20. #20
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    Hi,

    Please see the attached.

    I've added in formulas to calculate the YTD totals for one year back from the current date in cells B13:B17 (I did this for 'F' as well - not sure if you wanted that, though). To apply these formulas to further rows, the best way is to copy cells B12:B17, highlight the required range (e.g. B18:B77) and Paste Special/Formulas. Provided that the paste range is a multiple of 6, this will do the job.

    It's a little inconvenient that the Conditional Formattings apply to non-contiguous ranges. I have amended the formulas so that when they are copied to other cells, the references will be correct. However, I will leave the actual copying to you, as in any case you will need to do this if, as you say, you go beyond the current row 77.

    The only (relatively quick) way I could get it to work properly was:

    1) Delete all Conditional Formatting except for those in cells A12:A17
    2) Highlight cells A12:A17 and Copy
    3) Highlight cells A18:A23 and Paste Special/Formats (unfortunately this will also upset your colour scheme, which you'll just have to manually re-colour).
    4) Repeat for cells A24:A29, etc. etc.

    I tried pasting down the entire column without doing it in these 'blocks' of 6, but for some reason this didn't have the desired effect on updating the Conditional Formatting for the rows below. Not sure why at the moment. Guess you'll just have to do it in 'blocks' of 6 unless someone else can offer a better solution - sorry!

    Hope that helps.

    Regards
    Attached Files Attached Files

  21. #21
    Registered User
    Join Date
    05-13-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Conditional Formatting for Attendance Tracking

    Thanks a lot. It took a little while, but with the changes to the formula and a few last minute adjustments to the sheet, it's 100% done! Now, I'll let the admins play around with it and test it out. Hopefully it functions properly, and will be implemented soon. Thanks again, I couldn't have figured this out without all your help and patience. I'll keep you posted on how everything goes.

    Cheers!

  22. #22
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Conditional Formatting for Attendance Tracking

    No worries. Glad to have helped and all the best to you.

    Cheers

  23. #23
    Registered User
    Join Date
    12-02-2013
    Location
    louisiana
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Conditional Formatting for Attendance Tracking

    I'm trying to create the same thing but don't have anything set up. I'm not an excel guru but I'm not a beginner either. We have turnstyles that clock our time in/out. How do I pull that information into this? Where do I begin?

  24. #24
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Conditional Formatting for Attendance Tracking

    April102077,

    Unfortunately you need to post your question in a new thread, it's against the forum rules to post a question in the thread of another user. If you create your own thread, any advice will be tailored to your situation so you should include a description of what you've done and are trying to do. Also, if you feel that this thread is particularly relevant to what you are trying to do, you can surely include a link to it in your new thread.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

Closed 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