Formula help

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.
 
P

PBezucha

Steph,

Still, most simple solution by a UDF:

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

Shane Devenshire

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...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top