I have data which looks like this -
9/4 JF
6/4 F
5/2 F
2/1 F
etc etc
Using this formula I can convert these to -
9/4
6/4
5/2
2/1
' =IFERROR(LEFT(T136,FIND("/",T136)+1),T136)
But what I'm really looking for is -
2.25
1.5
2.5
2
I'm happy to use an extra column to achieve my goal but
if it can...