Apollo6 (& Mike / Rob - if you are still on this thread!!)
Pls see questions below.
1st of all, thanks much for pointing me to this thread. Like Apollo6, I found Mike's solution to work best, because could not always confirm alpha as start.
FYI: I needed to extract string from cell and place Alpha / Numeric in adjacent cells on worksheet, which I accomplished with following mods to Mike's code:
Sub SeparateAlphaNumerics()
Dim Alpha As String
Dim Num As String
Dim InpStr As String
Dim i As Integer
Dim OneChar As String * 1
InpStr = Range("C1"

For i = 1 To Len(InpStr)
OneChar = Mid$(InpStr, i, 1)
If (OneChar Like "[A-Z]"

Or (OneChar Like "[a-z]"

Then
Alpha = Alpha & OneChar
ElseIf (OneChar Like "[0-9]"

Then
Num = Num & OneChar
End If
Next i
Range("A1"

.Value = Num
Range("B1"

.Value = Alpha
End Sub
QUESTIONS:
1. I have a whole column of alpha/numerics that I need to execute this code on, placing the extracted number and text to the left of the Alpha/numeric string in each case, as per above. Any ideas how to go down the column (starting at 1st cell below header) and perform this, replacing InpStr = "??" and Alph / Num = "??" with appropriate cells in column?
2. I find that the numeric I need to extract is always last 4-5 characters in the string. Any way to just extract those and not other numbers if they appear earlier in the string.
Thanks for your suggestions on how to accomplish this!!
JDTTEK