Thread
: [Solved]
Extract Numbers from Alphanumeric String
View Single Post
05-12-2011, 06:51 AM
Colin Legg
Windows 7 32bit
Office 2010 32bit
Expert
Join Date: Jan 2011
Location: UK
Posts: 369
If the number is always immediately followed by an "F" or an "S", then you could use this formula:
Code:
=LEFT(A1,MIN(SEARCH({"F","S"},A1&"FS")-1))
Colin Legg
View Public Profile
Find all posts by Colin Legg