Hello,
The solution to my problem may be elementary, but I am just not finding it. I am looking for records that show that process is automatically repeating. So, I am looking at data/time stamps, and I am trying to flag any record which matches a previous record within 2 seconds of its date/timestamp.
EXAMPLE:
For i = 2 To 25000
((variable2)) ((variable1 + 2 seconds))
If 7/18/2018 13:00:01 <= (7/18/2018 13:00:00 + 2 seconds) Then
Perform tasks to mark record
End If
Next
Can anyone tell me how to evaluate the timestamp this way?
Thank you in advance!
The solution to my problem may be elementary, but I am just not finding it. I am looking for records that show that process is automatically repeating. So, I am looking at data/time stamps, and I am trying to flag any record which matches a previous record within 2 seconds of its date/timestamp.
EXAMPLE:
For i = 2 To 25000
((variable2)) ((variable1 + 2 seconds))
If 7/18/2018 13:00:01 <= (7/18/2018 13:00:00 + 2 seconds) Then
Perform tasks to mark record
End If
Next
Can anyone tell me how to evaluate the timestamp this way?
Thank you in advance!