Option Explicit
Sub FindAndReplace()
' hiker95, 08/26/2013
' http://www.mrexcel.com/forum/excel-questions/722587-i-want-find-replace-column.html
Dim a As Variant, f As Variant
Dim i As Long, ii As Long
a = Cells(3, 1).CurrentRegion
f = Cells(3, 6).CurrentRegion
For i = 1 To UBound(a, 1)
For ii = 1 To UBound(f, 1)
If a(i, 1) = f(ii, 1) Then
a(i, 1) = f(ii, 2)
End If
If a(i, 2) = f(ii, 1) Then
a(i, 2) = f(ii, 2)
End If
Next ii
Next i
Cells(3, 1).CurrentRegion = a
End Sub