Character extraction help!

harami

New Member
Joined
Dec 8, 2018
Messages
3
Hi

I am familiar with left, right and mid but am unable to get the results below in a streamlined way. I was able to convert the rows using text to columns and then do a concatenation of just the characters and do the right for 3 characters but that is quite painful and not repeatable for large data sets.

Goal: Extract the last three alphabets from each row below.

Data Set: Each row can be of different lengths and is separated per below:

Row 1: ABC ~ XYZ ~ XXX ~ ~
Row 2: ABC ~ GHI ~ ABC ~ EEE ~
Row 3: GHI ~ ABC ~ FFF ~ ~

Desired Output:
Row 1: XXX
Row 2: EEE
Row 3: FFF

Thanks for your help!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Are they separated with just a 'tilde' or 'space tilde space'?

Also, is the sting just in column A and you want the last three alphabet in col B?
 
Last edited:
Upvote 0
Are they separated with just a 'tilde' or 'space tilde space'?

Also, is the sting just in column A and you want the last three alphabet in col B?

Space and tilde with spaces that arent equal across. $ is spaces in below:

Row 1: ABC$~$$XYZ$~$$XXX$~$~
 
Upvote 0
try the following in B1

=RIGHT(TRIM(SUBSTITUTE(A1,"~"," ")),3)
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,969
Members
449,059
Latest member
oculus

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