Thanks, the above works however only when all within one Macro.
Ideally i require the below as a public function to call upon
Formula:
Dim Array1, Array2, i As Long
Array1 = Array("a", "b", "c", "d")
Array2 = Array("1", "2", "3", "4")
Therefore the below would be within each of my individual Macros
Formula:
Call Public Function
For i = LBound(Array1) To UBound(Array1)
Columns("A:A").Replace What:=Array1(i), Replacement:=Array2(i), LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Next
Is this achievable at all?
Cheers
Bookmarks