this loop should count every event in the G column that meets the criteria. When the entry in the E column meets the exact day and 0<x<70000 criteria and the entry in the G column meets the <=40000 criteria the countsno4 should be incremented, and it is, but not correctlly. any sugdestions how to correct it?
For Each cell In WS.Range("E2", Range("E1000").Address)
If cell.Value <> "" And Len(cell.Value) > 0 Then
convert = Format(cell.Value, "yyyy-mm-dd hh:mm:ss")
DateofEntry = Left(convert, 19)
TimeofEntry = Replace((Right(convert, 9)), ":", "")
convert = Format(cell.Offset(0, 2).Value, "hh:mm:ss")
start = Replace(convert, ":", "")
If Weekday(DateofEntry, vbMonday) < 6 And TimeofEntry >= 0 And TimeofEntry <= 70000 And start <= 40000 Then countsno4 = countsno4 + 1
Else: End If
Next cell
Bookmarks