Help in removing multiple random amounts of periods

DougStroud

Well-known Member
Joined
Aug 16, 2005
Messages
2,976
Office Version
  1. 365
Platform
  1. MacOS
I need help in removing periods from a series of cells.

Example:
[TABLE="width: 202"]
<colgroup><col style="mso-width-source:userset;mso-width-alt:8618;width:202pt" width="202"> </colgroup><tbody>[TR]
[TD="width: 202"]Columbia-Barnard.........................[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Duke.............................[/TD]
[/TR]
</tbody>[/TABLE]
<style>table { }td { padding-top: 1px; padding-right: 1px; padding-left: 1px; color: black; font-size: 12pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Calibri, sans-serif; vertical-align: bottom; border: medium none; white-space: nowrap; }</style>

I tried find/replace all and that did not work.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
If your Data is in Column A, put the following formula in B1 and copy down the length of your data in column A

=SUBSTITUTE(SUBSTITUTE(A1,CHAR(133),""),CHAR(46),"")

Explanation:

Char(46) = .
Char(133) = ... (3 periods in a row that get generated when u type them in microsoft word or excel... and they are considered as 1 (not 3) charachter)

I think that this may be what you are looking for.
 
Last edited:
Upvote 0
If your Data is in Column A, put the following formula in B1 and copy down the length of your data in column A

=SUBSTITUTE(SUBSTITUTE(A1,CHAR(133),""),CHAR(46),"")

Explanation:

Char(46) = .
Char(133) = ... (3 periods in a row that get generated when u type them in microsoft word or excel... and they are considered as 1 (not 3) charachter)

I think that this may be what you are looking for.


Dude- You Rock! Thank you so much!!!!
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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