View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Change Inches to feet and Inches

One way:

=INT(SUM(A1:A3)/12) & TEXT(MOD(SUM(A1:A3),12), "' 0\"" ?/?")

In article ,
Bob 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.