If I understand what you want, I have what you want. In the workbook attached, column M is a list of time values for the information in column L to facilitate the calculations. Column N has the data for data types 3 and 12. Column O has the data for types 12 and 13. The entries on the first rows of these columns are a count of how many data points there will be, and the rest of the entries are the time differences. Row 2 of column N is the difference between the time associated with the first occurrence of data type 3 and the next of type 12. The last row of column N is the difference between the final occurrence of data type 3 and the next of type 12. Similar idea with column O.
This is what the code to generate the values for the N column looks like:
Sub ThreeAndTwelve()
Dim rowlookup3 As Long
Dim rowlookup12 As Long
Cells(1, 1).Select
' cell(1,14) contains a count of how often 3 occurs
For Count = 1 To Cells(1, 14).Value
Cells.Find(What:="3", After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Select
rowlookup3 = ActiveCell.Row
time1 = Cells(rowlookup3, 13).Value
rowlookup12 = Cells.Find(What:="12", After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Row
time2 = Cells(rowlookup12, 13).Value
answer = time2 - time1
Cells(Count + 1, 14).Value = answer
Next Count
End Sub
I hope this is what you're looking for.
Bookmarks