Why doesn't this work:
For i = 17 To FinalRow
'Check for 1750-1...
If ActiveCell.Cells("i, 4") = "1750-1" Then
End If
i = i + 13
Next i
My code is faulting out at the "If ActiveCell.Cells("i, 4") = "1750-1" Then" line. I want the content of the cell at i, 4 to equal 1750-1. The line passes the debugger and faults out on execution.
Thanks for the help.
Regards,
FTM The NOOB!
For i = 17 To FinalRow
'Check for 1750-1...
If ActiveCell.Cells("i, 4") = "1750-1" Then
End If
i = i + 13
Next i
My code is faulting out at the "If ActiveCell.Cells("i, 4") = "1750-1" Then" line. I want the content of the cell at i, 4 to equal 1750-1. The line passes the debugger and faults out on execution.
Thanks for the help.
Regards,
FTM The NOOB!