This free Excel macro will automatically format a selected cell or many selected cells in the Fraction number format in Excel. The Fraction number format is the appropriate format to use in order to correctly display fractions in Excel.
This Excel macro is great for automating repetitive formatting tasks or for quickly formatting a large selection of cells in Excel. This macro work on the cells, rows, or columns which have been highlighted before the macro is run.
Sub Format_Cell_Fraction()
Selection.NumberFormat = "# ?/?"
End Sub