Formula help

  • Thread starter Thread starter Steph
  • Start date Start date
S

Steph

I have data that looks like this:

S30 1M D C7D
S30 1M D
5W I 4
2W I X AH1

I need a formula that will extract the third group of characters from each
record. The records can be any length and the groups are seperated by
spaces. For example,

From "S30 1M D C7D" I need to extract "D".
From "S30 1M D" I need to extract "D".
From "5W I 4" I need to extract "4".
From "2W I X AH1" I need to extract "X".

Thanks for any help that can be provided.
 
Steph,

Still, most simple solution by a UDF:

Function S(Arg As String) As String
S = Split(Arg, " ")(2)
End Function
 
Hi,

No need for a UDF here is a simple formula

=MID(A1,FIND(" ",A1,FIND(" ",A1)+1)+1,20)

Or you chan choose Data, Text to Columns, Delimited, click Next choose
Space, click Next, select the first two columns in the Data Preview pane and
choose Do not import (Skip), set a destination...
 
Back
Top