Got a simple formula to convert goals and behinds into points, each goal is worth 6 points and a behind is worth 1 point. Formula works in all cases except when you have something like 17.10, this should calculate to 17 x 6 + 10 x 1 which equals 112 points. As you can see in the file, it drops the 0 from 17.10 and calculates 103. I've tried Custom formats but no joy here. Is there a way to force TEXTAFTER to recognise the 0 or is there another quick solution?
Cell Formulas | ||
---|---|---|
Range | Formula | |
F2:I3 | F2 | =INT(A2)*6+(TEXTAFTER(A2,".")) |
K3 | K3 | =TEXTAFTER(D3,".") |