Hi,
A number with a < sign is not a number in Excel, it is text. and if you are
trying to convert it as in your title the result will not be a number either.
To do what you subject line asks probably would require a VBA macro.
Here is a macro you could run against a select range of cell to convert them
(only if the leading character is <.
Sub ConvertIt()
Dim cell As Range
Dim x As Integer
Dim First As Double
Dim Second As Double
For Each cell In Selection
If Left(cell, 1) = "<" Then
x = InStr(1, cell, "/")
First = Mid(cell, 2, 1)
Second = Mid(cell, x + 1, 10)
cell = "<" & First / Second
End If
Next cell
End Sub