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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
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,104
Messages
6,123,113
Members
449,096
Latest member
provoking

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