Hi,
normalny in the column "M" I have data format (ex. 25.05.2013 12:10:55), but sometime the values are difrent: -628022.9725 or -623275.021412037
Now I want to remove all the values wrong values.
I have something like:
But I got error like: Run-time error '6': Overflow
normalny in the column "M" I have data format (ex. 25.05.2013 12:10:55), but sometime the values are difrent: -628022.9725 or -623275.021412037
Now I want to remove all the values wrong values.
I have something like:
Code:
With sourceWb.Sheets(1)
LastRow = .Range("A65536").End(xlUp).Row
For j = 1 To LastRow
If .Range("M" & j).Value < 0 Then .Range("M" & j).ClearContents
Next j
End With
But I got error like: Run-time error '6': Overflow