Hi JCarlos,
try also this
Sub ertert()
Dim x, y, i&
With Sheets("TRanslation Lists ")
x = .Range("A1:B" & .Cells(Rows.Count, 1).End(xlUp).Row).Value
End With
With Sheets("Special Instructions Tab")
With .Range("A1", .Cells(Rows.Count, 1).End(xlUp))
If Not .Find("\\") Is Nothing Then MsgBox "Translation already made", 64: Exit Sub
y = .Value
For i = 1 To UBound(x)
.Replace x(i, 1), x(i, 2)
Next i
x = .Value
For i = 2 To UBound(x)
If Len(x(i, 1)) Then x(i, 1) = y(i, 1) & "\" & x(i, 1)
Next i
.Value = x
End With
End With
End Sub
Bookmarks