in this macro i am trying to find and replace data in the rows of a
particular column (25th). can someone guide me where im going wrong?
Sub ReplaceData()
Dim x As Integer
For x = 2 To 40000
Cells(x, 25).Select
cell.Value = Replace(cell.Value, "FALSE", "FAL")
Next x
End Sub
this code gives an overflow error
Bookmarks