Format-How to Force Fraction to DECIMAL?
The formula in B2 gives "1/3".
The formula in B1 gives "39085"
The formula in B3 is a way around this and gives "0.333333", but I am curious as to how to get B1 or B2 to work. Thanks for any ideas.
The formula in B2 gives "1/3".
The formula in B1 gives "39085"
The formula in B3 is a way around this and gives "0.333333", but I am curious as to how to get B1 or B2 to work. Thanks for any ideas.
Code:
A B
1 1/3BaC 39085
2 1/3BaC 1/3
3 1/3BaC 0.333333
Sheet1
[Table-It] version 09 by Erik Van Geit
Code:
RANGE FORMULA
B1 =--LEFT(A1,FIND("/",A1)+SUM(--ISNUMBER(-MID(A1,FIND("/",A1)+1,ROW(INDIRECT("1:"&LEN(A1)))))))
B2 =LEFT(A2,FIND("/",A2)+SUM(--ISNUMBER(-MID(A2,FIND("/",A2)+1,ROW(INDIRECT("1:"&LEN(A2)))))))
B3 =LEFT(A3,FIND("/",A3)-1)/MID(A3,FIND("/",A3)+1,SUM(--ISNUMBER(-MID(A3,FIND("/",A3)+1,ROW(INDIRECT("1:"&LEN(A3)))))))
[Table-It] version 09 by Erik Van Geit