Removing last 18 characters on Left side of excel Cell

igmike

Board Regular
Joined
Feb 12, 2013
Messages
62
Office Version
  1. 2013
Platform
  1. Windows
In part of an ongoing larger project that a team member is helping me with, this will help me get one step closer, I've tried using =RIGHT(B3),LEN - N but due to the nature of the "Titles" in column B3 being different # of characters to the right, I thought there but be a more direct and simpler solution, to remove the last 18 characters on the left side of B3:B775. That is the one constant.

Your help is much appreciated.

Here are a few examples. (Excuse my lack of excel genie in this case)

CALL of DUTY Black Ops Bundle 160GB 85+ 272826824787 5***v
CALL of DUTY Black Ops Bundle 160GB 85+ 272839937690 5***v
PS3 CALL of DUTY Black Ops Bundle 160GB 85+ 272888440351 5***v
Red Dead Redemption SPECIAL EDITION, PS3 90+ 201778548898 e***e

<tbody>
</tbody>
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Your title is a bit confusing. Assuming you want to remove the last 18 characters. In C3 and copy down:
Code:
=LEFT(TRIM(B3),LEN(TRIM(B3))-18)
If you want to remove the left-most 18 characters try:
Code:
=MID(TRIM(B3),19,LEN(TRIM(B3)))
 
Last edited:
Upvote 0
Your title is a bit confusing. Assuming you want to remove the last 18 characters. In C3 and copy down:
Code:
=LEFT(TRIM(B3),LEN(TRIM(B3))-18)
If you want to remove the left-most 18 characters try:
Code:
=MID(TRIM(B3),19,LEN(TRIM(B3)))


I see what you mean, it is a bit late, and I should have worded it more clearly. I will try the formula you have written as I believe it should do the trick.

To be precise, in the first example, here are the characters Id like to remove:

272826824787 5***v
272839937690 5***v
272888440351 5***v
201778548898 e***e

 
Upvote 0
Makes perfect sense if you're ambidextrous Joe
 
Upvote 0
well said @joli lol, at night I certainly qualify as ambidextrous, or computer drunk, as I rarely drink and code. haha. great board.
 
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