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.