Zack
Copy the column then run this macro on the copied column.
Sub RemoveAlphas()
'' Remove alpha characters from a string, including decimal point.
Dim intI As Integer
Dim rngR As Range, rngRR As Range
Dim strNotNum As String, strTemp As String
Set rngRR = Selection.SpecialCells(xlCellTypeConstants, _
xlTextValues)
For Each rngR In rngRR
strTemp = ""
For intI = 1 To Len(rngR.Value)
If Mid(rngR.Value, intI, 1) Like "[0-9,.]" Then
strNotNum = Mid(rngR.Value, intI, 1)
Else: strNotNum = ""
End If
strTemp = strTemp & strNotNum
Next intI
rngR.Value = strTemp
Next rngR
End Sub
If not familiar with macros, see David McRitchie's "getting started" site.
http://www.mvps.org/dmcritchie/excel/getstarted.htm
Gord Dibben Excel MVP