J
Jason Morin
How can I find and replace for a certain range? I'd
rather not use Cells.Replace.... and search the entire
sheet:
Sub Worksheet_Activate()
Set area = Sheets("Layout-Bulk (2)").Range("A7:BR53")
For Each cell In area
.Replace What:="##", Replacement:="="
Next cell
End Sub
Thx.
Jason
rather not use Cells.Replace.... and search the entire
sheet:
Sub Worksheet_Activate()
Set area = Sheets("Layout-Bulk (2)").Range("A7:BR53")
For Each cell In area
.Replace What:="##", Replacement:="="
Next cell
End Sub
Thx.
Jason