VBA - Find Replace on selected cells

rsulliva

Board Regular
Joined
Sep 13, 2007
Messages
131
Office Version
  1. 365
Platform
  1. Windows
I have written the following vba which allows me to run a find and replace on selected cells only. It replaces the = sign in a formula with a 1= so I can easily copy over formulas from workbook to workbook or even in different instances of Excel. It is working for the most part but, I cant figure out why when it finds and replaces, it is replacing with 1111= instead of 1=. Any ideas? Thank you.

VBA Code:
Sub FindReplace_Equals_With_1Equals()
Dim rngMyRange As Range
Dim cell As Range

Set rngMyRange = Selection
For Each cell In rngMyRange.Cells

Selection.Replace What:="=", Replacement:="1=", LookAt:=xlPart, _
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2

Next cell

End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
When you replace over a range you do the whole range at once, but you're looping based in the number of cells in the selection so you'll replace every = with 1 that many times. Try it without the loop. That means you don't need the cell variable.
 
Upvote 0
Delete these lines.
VBA Code:
Set rngMyRange = Selection
For Each cell In rngMyRange.Cells
and
VBA Code:
Next cell
 
Upvote 0
Solution
Thanks to both Micron and Kvsrinivasamurthy. This solution now completely makes sense to me and works wonderfully. I had over thought the original vba.
 
Upvote 0

Forum statistics

Threads
1,221,300
Messages
6,159,125
Members
451,538
Latest member
edeneye

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top