• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Employee Check-in TIme

Luis Nic

New Member
Hello im trying to get how many times my employes come in late, ive tried countif but the format of the data dosent match.
the emplyes have a tolerance of 16 minutes past there chekin time.

i uploded the sample data, hope you can help... i have 300 employes :(
 

Attachments

  • sample data.xlsx
    11.1 KB · Views: 8
One possible, if really would like to use formulas.
 

Attachments

  • sample data (2).xlsx
    11.2 KB · Views: 10
One main issue is that you have Datetime masquerading as Time in range E3:R4.

Also, it's not good idea to mix data types.

Having said that try using following formula.
=SUMPRODUCT(($E$2:$R$2="Chek in")*ISNUMBER($E3:$R3)*(IFERROR(MOD($E3:$R3,1),0)>$B3))

Confirmed as Array (CTRL + SHIFT + ENTER)

Or below variation, as regular formula.
=SUMPRODUCT(($E$2:$R$2="Chek in")*ISNUMBER($E3:$R3)*($E3:$R3>E$1:R$1+$B3))
 
Back
Top