Remove 1st char after a special char

DQ2013

New Member
Joined
Nov 7, 2013
Messages
31
Hi I have the follow data . I need to remove the 1 character after the "." The result I require taking the first row must return as CWRX192.S or CWRX192.XL for the 4th row. Please help. thanks you

CWRX192.CS
CWRX192.DM
CWRX192.EL
CWRX192.FXL
CWRX192.G2XL
CWRX192.G3XL
CWRX192.G4XL
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
See if this works for you:

Excel Formula:
=IFERROR(REPLACE(A2,FIND(".",A2)+1,1,""),A2)

Book1
AB
1Original DataAfter Replace
2CWRX192.CSCWRX192.S
3CWRX192.DMCWRX192.M
4CWRX192.ELCWRX192.L
5CWRX192.FXLCWRX192.XL
6CWRX192.G2XLCWRX192.2XL
7CWRX192.G3XLCWRX192.3XL
8CWRX192.G4XLCWRX192.4XL
Sheet1
Cell Formulas
RangeFormula
B2:B8B2=IFERROR(REPLACE(A2,FIND(".",A2)+1,1,""),A2)
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,124
Members
449,097
Latest member
mlckr

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