Share via

How to delete the first 5 characters in a cell

Anonymous
2010-11-05T14:28:11+00:00

I have a column with names, but they are all preceded by five characters I wish to be deleted:

FIN # Bank of KY

FIN # Bank of the Ozarks

I wish it to only read only "Bank of KY" or "Bank of the Ozarks" (with no spaces in front of it).  If I do a find/replace, it leaves a space, so I am not sure how to proceed.

Can you help?

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

  1. Anonymous
    2010-11-05T14:48:59+00:00

    As stated, I didn't want an extra space, I wanted it to be flush with the left side.  I did however, determine the formula I needed to use is:

    =RIGHT(B2,LEN(B2)-6)

    30+ people found this answer helpful.
    0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2010-11-05T15:47:19+00:00

    As stated, I didn't want an extra space, I wanted it to be flush with the left side.  I did however, determine the formula I needed to use is:

    =RIGHT(B2,LEN(B2)-6)

    If you insist on doing it with a formula, you can reduce the number of function calls by doing it this way...

    =MID(B2,6,99)

    That 99 assumes your text will never be longer than 99 characters. If it could be longer, then just make the 99 a number equal to, or larger than, the maximum number of characters you ever expect to have.HOWEVER, with that said, I would not use a formula... go back to the Edit/Replace and do what Rik_UK posted and note the space after the # sign in his "find" text... by including that space (at that position) in the "find" field, it will get replaced just like any other character you specify there.... hence, so "extra space" afterwards. Try it.


    NOTE: Please mark the message or messages (yes, you can mark more than one) that answer your question as the "Answer" so that others will know your question has been resolved.

    6 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2010-11-05T14:31:03+00:00

    Hi Dawn

    Do a find and replace with an extra space 'FIN # '

    Should sort it out...


    Rik_UK Please mark the message or messages that answer your question as the "Answer" or vote if a reply has been helpful.

    2 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2014-05-20T14:11:08+00:00

    THANKS A LOT

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2010-11-05T15:18:17+00:00

    Yours is not the best solution. Reread the previous post


    Don Guillett MVP Excel SalesAid Software *** Email address is removed for privacy ***

    1 person found this answer helpful.
    0 comments No comments