Hi

I want to replace NameY (fixed) with NameX, but name X change for every sheet. So my intetion is to relate it to the contain in cell J2 that is different at different sheet.

I have this code now but as I have told you i want to relate it to the contain in cell J2.

Sub ReplaceName()
'

Cells.Replace What:="NameY", Replacement:="NameX", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub

Thanks

Rune