This worked just right:
=INT(SUM(A1:A3)/12) & TEXT(MOD(SUM(A1:A3),12), "' 0\"" ?/?")the formula:
This formula leaves a decimal for the fraction.
=TEXT(INT(SUM(A1:A7)/12) & "' " &MOD(SUM(A1:A7),12) & """","0.00")
Thanks again for your help.
"JE McGimpsey" wrote:
> One way:
>
> =INT(SUM(A1:A3)/12) & TEXT(MOD(SUM(A1:A3),12), "' 0\"" ?/?")
>
> In article <472AF9A0-4739-46C3-A824-(E-Mail Removed)>,
> Bob <(E-Mail Removed)> wrote:
>
> > I have a column adding inches with fractions like this:
> >
> > 96
> > 4 1/4
> >
> > 100 1/4
> >
> > How can you format the cell with 100 1/4 to show 8' 4" 1/4
> >
> > Thank you for your help.
>
|