Mixed Fraction Formula

I am trying to get a cell to read 12 3/4 as 12.75 so Smartsheet will complete the math for the sheet in another cell.

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    Give this a go:

    =IF(FIND("/", [Column Name]@row) <> 0, VALUE(LEFT([Column Name]@row, FIND(" ", [Column Name]@row) - 1)) + (VALUE(MID([Column Name]@row, FIND(" ", [Column Name]@row) + 1, FIND("/", [Column Name]@row) - (FIND(" ", [Column Name]@row) + 1))) / VALUE(RIGHT([Column Name]@row, LEN([Column Name]@row) - FIND("/", [Column Name]@row)))), [Column Name]@row)

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!