Deliminating Text

  • Thread starter Thread starter NicoleS
  • Start date Start date
N

NicoleS

I need to deliminate text, but not all of it.
Example: Let's say this is a part number:
1234-AB-20GQ

If I need to keep the 1234-AB together, and just drop off the 20GQ... Is
there a way to do that?

Currently I use deliminator, set it to deliminate hyphens (-) and then
concatonate the pieces I need back together.

Thanks,
 
Try this...

Go to Edit, then click on Replace...

Put in the Find - 1234-AB
Put in the Replace with- 1234-AB

Then click, replace or replace all.

If this does not work let me know and I will attempt to fix it by
delimination.
-D
 
If the first part of your code is always 7 characters, then you could
use:

=LEFT(A1,7)

and copy down.

Hope this helps.

Pete
 
I never thought of this. This would work well when I have a long list of part
numbers that vary only with the color code at the end. Thanks :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top