I have some columns full of improper fractions.
To stop libreoffice from treating these as dates each is prefixed with ’ (apostrophy) eg '16/15
I want to do some math on these fractions but cannot work out how to convert them to decimals.
I have come up with the following formula
=LEFT(IF(LEFT(T37)=”’”,right(t37;len(t37)-1),t37);FIND("/";IF(LEFT(T37)=”’”,right(t37;len(t37)-1),t37))-1)/RIGHT(IF(LEFT(T37)=”’”,right(t37;len(t37)-1),t37);FIND("/";IF(LEFT(T37)=”’”,right(t37;len(t37)-1),t37))+1)
which has syntax errors.
Is this really what I have to do to convert '16/15 to 1.06666666?
If so can someone correct the syntax for me, please?