Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 , 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change feet and inches to decimal inches | Excel Worksheet Functions | |||
Convert inches & display as Feet Inches and Fractions -- BUG FREE | Excel Worksheet Functions | |||
How do I use feet and inches (including fractions of inches) | Excel Worksheet Functions | |||
Converting from feet, inches and fractions to inches and decimal p | Setting up and Configuration of Excel | |||
Feet, inches and fractions to inches and dec.....reposting for Pet | Setting up and Configuration of Excel |