Respected forum members
I am doing Find replace using VBA, i am able to achieve results for entire sheet and multiple sheets but i am not able to select the right formula for find and replace in specific rows
My requirement is to select from Row2 from cell A2 and go till Nth(last) column of last row and do find replace, I dont want to touch row1
Code
'Stored sheet to object
Set mysheet = Sheets("Sheet1")
'Please suggest how can i select specific range from Row2 till end of rows for filled columns only
mysheet.Cells.Replace what:=fnd, Replacement:=rplc, _
LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, _
SearchFormat:=False, ReplaceFormat:=False
Option i tried and it failed for Class Range then 1004 object error, Kindly share your input