How to find string and replace it?

iand5

New Member
Joined
Jul 26, 2017
Messages
36
I already have the code for replacing a string with a different string. It works when I know what the contents of the cell are. For example, in this case "A1" contains the string "test".
Code:
Sub Button1_Click()

Dim OriginalText As String
Dim CorrectedText As String


OriginalText = Range("A1").Value
CorrectedText = Replace(OriginalText, "test", "exam")


Range("A1").Value = CorrectedText


End Sub


I am trying to figure out how to replace a string when I don't know the contents of the cell.
 
I asked you this question in post 8
Have you looked into the built in function in Excel.
On the ribbon you should see Find and inside Find you have a replace section.
 
Upvote 0

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
.

Yes.

This line :

Code:
[/I][/COLOR] Set WS = ThisWorkbook.ActiveSheet[COLOR=#333333][I]

tells the macro to look at the sheet that is displayed.
 
Upvote 0

Forum statistics

Threads
1,223,958
Messages
6,175,629
Members
452,661
Latest member
Nonhle

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