Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
What I am trying to do is find the total amount of time my site goes down. It
all works when there is only one error in a row, but when it enters the loop it crashes on it's second pass. Any Suggestions? Sub Total() Dim ObjErrorString, ObjOkString Dim ObjErrorCell, ObjErrorTime Dim ObjOkCell, ObjOkTime Dim ObjTotal Set ObjErrorCell = Cells.Find(What:="ERROR", After:=ActiveCell, SearchOrder:=xlByColumns, SearchDirection:=xlNext) ObjErrorString = Left(ObjErrorCell.Offset(1, 0).Value, 5) Do Until ObjErrorString < "ERROR" ObjErrorCell = ObjErrorCell.Offset(1, 0) Set ObjErrorString = Left(ObjErrorCell.Offset(1, 0).Value, 5) Loop ObjErrorCell.Select Set ObjErrorTime = ActiveCell.Offset(0, -ActiveCell.Column + 1) Set ObjOkCell = Cells.Find(What:="OK", After:=ActiveCell, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious) ObjOkCell.Select Set ObjOkTime = ActiveCell.Offset(0, -ActiveCell.Column + 1) ObjTotal = ObjOkTime - ObjErrorTime Range("E389").Value = ObjTotal End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VB for excel, how do I loop through code | Excel Discussion (Misc queries) | |||
loop trough e-mail address list to send task lists with outlook | Excel Discussion (Misc queries) | |||
Printe Autofilter Criterias in a Loop | Excel Discussion (Misc queries) | |||
How to pass values of a cell? | Excel Discussion (Misc queries) | |||
pass fail | New Users to Excel |