First character in a cell beginning with a alpha character

MrDil

New Member
Joined
Mar 26, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi all.

I'm looking for a formula that will read a cell and find the first alpha character and everything after it. For example '123target' would be 'target' , or 'target123' would be 'target123' . I hope that makes sense. Any help would be appreciated!!! Thanks.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Using @Scott Huish's set-up, this single formula will spill the entire column's results...
Excel Formula:
=MID(A1,LEN(TEXTBEFORE(A1:A3,CHAR(SEQUENCE(26,,65)),,1))+1,LEN(A1))
 
Upvote 0
Using @Scott Huish's set-up, this single formula will spill the entire column's results...
Excel Formula:
=MID(A1,LEN(TEXTBEFORE(A1:A3,CHAR(SEQUENCE(26,,65)),,1))+1,LEN(A1))
Wouldn't that need to be ..?
Excel Formula:
=MID(A1:A3,LEN(TEXTBEFORE(A1:A3,CHAR(SEQUENCE(26,,65)),,1))+1,LEN(A1:A3))
 
Upvote 0
PERFECT!!! thanks so much!
OK... One more scenario... How would I remove ALL numbers from the cell instead of just removing it from the beginning? Sorry to be a pain, I'm just thinking.
 
Upvote 0
How about
Excel Formula:
=CONCAT(TEXTSPLIT(A2,SEQUENCE(10,,0)))
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,079
Members
449,094
Latest member
mystic19

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