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:
Columbia-Barnard.........................
Duke.............................

<colgroup><col style="mso-width-source:userset;mso-width-alt:8618;width:202pt" width="202"> </colgroup><tbody>
</tbody>
<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

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
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,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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