I have a large number of excel files to clean up, any of the values contained in these arrays will be replaced by a different value
Below is what I have so far, any help is greatly appreciated
Below is what I have so far, any help is greatly appreciated
VBA Code:
Sub CleanUpOutlier()
Array1 = ("1", "2", "3", "4")
Array2 = ("5", "6", "7", "8")
With Range("D1", Cells(Rows.Count, "D").End(3))
.Replace Array1, "F12314J"
.Replace Array2, "F12315J"
End With
End Sub