Remove symbols

Panoos64

Well-known Member
Joined
Mar 1, 2014
Messages
890
Hi all, I would like to remove symbols ~-* in col. "A" using VBA as my below extract. Sch. 1 shows the original data and sch. 2 is the expected result. Thanking you in advance
~101004-~101004 **Undefined**
~101005-~101005 **Undefined**
~10102-~10102 **Undefined**

<colgroup><col style="mso-width-source:userset;mso-width-alt:10678;width:219pt" width="292"> </colgroup><tbody>
[TD="width: 292"]
Schedule 1.

~101003-~101003 **Undefined**
[/TD]

</tbody>


Schedule 2.
101004 101004 Undefined
101005 101005 Undefined
10102 10102 Undefined

<tbody>
[TD="width: 292"]101003 101003 Undefined
[/TD]

</tbody>
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi, here is one option you can try:

Code:
With Intersect(Columns("A"), ActiveSheet.UsedRange)
    .Replace What:="~~", Replacement:="", LookAt:=xlPart, SearchFormat:=False, ReplaceFormat:=False
    .Replace What:="~*", Replacement:="", LookAt:=xlPart, SearchFormat:=False, ReplaceFormat:=False
    .Replace What:="-", Replacement:=" ", LookAt:=xlPart, SearchFormat:=False, ReplaceFormat:=False
End With
 
Upvote 0
Many thanks Form, it works perfect! Thanks also for your time spent for my project. Have a great lovely day!
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,310
Members
452,634
Latest member
cpostell

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