View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary Keramidas Gary Keramidas is offline
external usenet poster
 
Posts: 2,494
Default Change Inches to feet and Inches

you can try this, i just used a1:a7 as the range


=TEXT(INT(SUM(A1:A7)/12) & "' " &MOD(SUM(A1:A7),12) & """","0.00")
--


Gary

"Bob" wrote in message
...
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.