I'm smiling - only that - Big, big, large, lg. and/or grand are specific text that i look for because users will enter data according to their individualized word preferences in the description, and the descriptions can get very lengthy. #tiredeyes Also it would help to calculate the count of numbers rather than ,99) Thank you.
I'm smiling - only that - Big, big, large, lg. and/or grand are specific text that i look for because users will enter data according to their individualized word preferences in the description, and the descriptions can get very lengthy. #tiredeyes Also it would help to calculate the count of numbers rather than ,99) Thank you.
Could be. It's more like - Big, big, large, lg. and/or grand are specific text that i look for because users will enter data according to their individualized word preferences in the description, and the descriptions can get very lengthy. #tiredeyes Also it would help to calculate the count of numbers so i get just the number. Thank you.Is it always like: text - space - numbers?
VBA Code:Sub jec() For Each it In Range("A1:A5") it.Offset(, 1).Value = Split(it)(1) Next End Sub
It would be best if you could show us some different examples of what the data may really look like.and the descriptions can get very lengthy.
Function jec(cell As String) As String
ar = Split(cell)
For i = 0 To UBound(ar)
If ar(i) Like "[0-9]*" Then
jec = ar(i)
Exit Function
End If
Next
End Function
=jec(A1)