Sub Off_Hours_Set_TEST()
      Dim x As String
      Dim found As Boolean
      Dim i As Integer, j As Integer
' Select first line of data.
      Range("A1").Select
' Set search variable value.
      x = "Off"
    For i = 0 To 2
        For j = 0 To 10
            If ActiveCell.Value = x Then
                found = True
                ActiveCell.Offset(i, j + 2) = "0"
            Else
                ActiveCell.Offset(i, j + 2).Value = ActiveCell.Offset(i, j + 1).Value - ActiveCell.Offset(i, j).Value
            End If
            j = j + 2
        Next j
    Next i
End Sub
Trying to make a little code that tallies up hours worked for day. It works until it encounters the cell with the word 'Off' in it, then it RTE 13's on me. I'm not quiet sure why it does this, or where the mismatch is coming from, as all it is doing is checking to see if the cell = Off, if it does, it inputs a 0 in the offset hours worked column. Ideas?
 
    