I am using microsft excel 2003. I am getting "Application-defined or object-defined error" while executing the following If statement.
If Range("MyData").CurrentRegion.Offset(i, 0).Resize(1, 1).Value = Range("MyData").CurrentRegion.Offset(i + 1, 0).Resize(1, 1).Value Then
The value of i is 58981 when I get this error.
Is there any limit on row offset ?
Thanks in Advance.
---Sam