Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I get cells to display in feet and inches using the x'x" format? For
instance, instead of 16", display 1'4" . or, instead of 2.5', display 2'6" I've tried to write my own custom number format to no avail, since I can't figure out how to get a custom format to perform functions. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=TEXT(INT(A1),"0 '")&TEXT(MOD(A1,1)*12,"-0 \""")
-- Gary's Student "Orision" wrote: How do I get cells to display in feet and inches using the x'x" format? For instance, instead of 16", display 1'4" . or, instead of 2.5', display 2'6" I've tried to write my own custom number format to no avail, since I can't figure out how to get a custom format to perform functions. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to figure out how to create a numbr format that keeps the data in
the cell as the number of inches, but displayes it using the method of 12' 5". A number format as in the date. The date stored the value of the cell as a number, but displays it differently. I would just use a custom number format of m'yyyy'' except 1) ECEL assumes 1900 and 2) EXCEL assumes that a numer is the number of days, so when I would want to increase by 5 inches, I would increase by 5 days, not 5 months, but if it did increase by 5 months then the display would be what I want it to be. I know it is possibly for this to happen, since EXCEL can already do it for the much mroe complicated time measurement system right from seconds to year. So, inches to feet shouldn't be ALL that diffuclt... maybe I'll actually ahve to write a VBA... Wow I don't want to do that. "Gary''s Student" wrote: =TEXT(INT(A1),"0 '")&TEXT(MOD(A1,1)*12,"-0 \""") -- Gary's Student "Orision" wrote: How do I get cells to display in feet and inches using the x'x" format? For instance, instead of 16", display 1'4" . or, instead of 2.5', display 2'6" I've tried to write my own custom number format to no avail, since I can't figure out how to get a custom format to perform functions. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display feet inches and fraction | Excel Discussion (Misc queries) | |||
convert column with inches to 2 columns "feet" and "inches" | Excel Discussion (Misc queries) | |||
Is it possible to display feet and inches in one cell ? | Excel Worksheet Functions | |||
Convert inches & display as Feet Inches and Fractions -- BUG FREE | Excel Worksheet Functions | |||
display feet and inches | Excel Discussion (Misc queries) |