Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to write a formula in excel, without using macros, to convert
decimal feet to feet-inch-sixteenths. Can someone help me ? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is this any good?
=TEXT(INT(D18)," 0 ""feet """)&INT(MOD(D18,1)*12)&" "&TEXT(MOD(D18*12,1),"0/16")&" inches" -- HTH Bob Phillips (remove nothere from email address if mailing direct) "tv" wrote in message ... I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() "tv" wrote in message ... I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? Are you able to write the formula on paper first? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Decimal value in A1, formula in B1:
=INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16") & "in" A1=2.345 (ft) B1=2 ft 4 2/16 in HTH "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Whilst I concede that yours is much better than mine, it can still be
improved upon <vbg =INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16 ""in""") -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Toppers" wrote in message ... Decimal value in A1, formula in B1: =INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16") & "in" A1=2.345 (ft) B1=2 ft 4 2/16 in HTH "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bob,
I'm flattered! "Bob Phillips" wrote: Whilst I concede that yours is much better than mine, it can still be improved upon <vbg =INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16 ""in""") -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Toppers" wrote in message ... Decimal value in A1, formula in B1: =INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16") & "in" A1=2.345 (ft) B1=2 ft 4 2/16 in HTH "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thamk you for this formula
however, i would like my result to read in the following format (ex: 4-6-8) can you help me tune the formula thanks "Toppers" wrote: Decimal value in A1, formula in B1: =INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16") & "in" A1=2.345 (ft) B1=2 ft 4 2/16 in HTH "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 7 Mar 2006 13:27:26 -0800, tv wrote:
Thamk you for this formula however, i would like my result to read in the following format (ex: 4-6-8) can you help me tune the formula thanks Here's one way: =INT(A1)&"-"&INT(MOD(A1,1)*12)&"-"&ROUND(MOD(MOD(A1,1)*12,1)*16,0) --ron |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you just want feet and inches from a decimal, use this formula:
(decimal in A1) =INT(A1)&"'-"&TEXT(MOD(A1),1)*12,"#??")&"""" |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Been having a nap Buster<g
This was a March 2007 original which was resurrected by another poster in November 2007. Gord Dibben MS Excel MVP On Wed, 20 Feb 2008 11:22:04 -0800, Buster wrote: If you just want feet and inches from a decimal, use this formula: (decimal in A1) =INT(A1)&"'-"&TEXT(MOD(A1),1)*12,"#??")&"""" |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I found your question very similar to one our school nurse has posed: When
our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? -- Thanks for your help "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mon, 19 Nov 2007 18:31:03 -0800, John A
wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? Assuming whole inches only: =INT(A1/12)&" ft, "&MOD(A1,12)&" inches" or, =INT(A1/12)*100+MOD(A1,12) and custom format: Format/Cells/Number/Custom Type: 0' 00\" If you want to report to tenths of an inch, change the Custom format to 0' 00.0\" --ron |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Do I simply enter the formula you recommended into the formula bar in cell A1
(example) and then try entering an inches number 55 or 55" (in cell A1) and it should convert to 4'7"? -- Thanks for your help "Ron Rosenfeld" wrote: On Mon, 19 Nov 2007 18:31:03 -0800, John A wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? Assuming whole inches only: =INT(A1/12)&" ft, "&MOD(A1,12)&" inches" or, =INT(A1/12)*100+MOD(A1,12) and custom format: Format/Cells/Number/Custom Type: 0' 00\" If you want to report to tenths of an inch, change the Custom format to 0' 00.0\" --ron |
#14
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Enter the formula in B1 then enter your number 55 in A1
Gord Dibben MS Excel MVP On Mon, 19 Nov 2007 19:11:01 -0800, John A wrote: Do I simply enter the formula you recommended into the formula bar in cell A1 (example) and then try entering an inches number 55 or 55" (in cell A1) and it should convert to 4'7"? |
#15
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'll try it Gord.
-- Thanks for your help "Gord Dibben" wrote: Enter the formula in B1 then enter your number 55 in A1 Gord Dibben MS Excel MVP On Mon, 19 Nov 2007 19:11:01 -0800, John A wrote: Do I simply enter the formula you recommended into the formula bar in cell A1 (example) and then try entering an inches number 55 or 55" (in cell A1) and it should convert to 4'7"? |
#16
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It worked!!! Fabulous !!!! Thanks
-- Thanks for your help "Gord Dibben" wrote: Enter the formula in B1 then enter your number 55 in A1 Gord Dibben MS Excel MVP On Mon, 19 Nov 2007 19:11:01 -0800, John A wrote: Do I simply enter the formula you recommended into the formula bar in cell A1 (example) and then try entering an inches number 55 or 55" (in cell A1) and it should convert to 4'7"? |
#17
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ron: I didn't read your complete response... I will try it.
-- Thanks for your help "Ron Rosenfeld" wrote: On Mon, 19 Nov 2007 18:31:03 -0800, John A wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? Assuming whole inches only: =INT(A1/12)&" ft, "&MOD(A1,12)&" inches" or, =INT(A1/12)*100+MOD(A1,12) and custom format: Format/Cells/Number/Custom Type: 0' 00\" If you want to report to tenths of an inch, change the Custom format to 0' 00.0\" --ron |
#18
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
clarification request:
Using your first formula... would the entire formula including the characters beyond the comma (,) go into the formula bar with cell A1 selected? Also, is there a space after the comma followed by "&MOD(A1,12)&"inches"? -- Thanks for your help "Ron Rosenfeld" wrote: On Mon, 19 Nov 2007 18:31:03 -0800, John A wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? Assuming whole inches only: =INT(A1/12)&" ft, "&MOD(A1,12)&" inches" or, =INT(A1/12)*100+MOD(A1,12) and custom format: Format/Cells/Number/Custom Type: 0' 00\" If you want to report to tenths of an inch, change the Custom format to 0' 00.0\" --ron |
#19
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mon, 19 Nov 2007 19:34:00 -0800, John A
wrote: clarification request: Using your first formula... would the entire formula including the characters beyond the comma (,) go into the formula bar with cell A1 selected? No. The formula refers to cell A1 which would be where you put your data. If you have a formula in the cell, and then overwrite it with data, you no longer have the formula. But of course you use the entire formula, if you want the result in feet and inches. Also, is there a space after the comma followed by "&MOD(A1,12)&"inches"? Yes. -- Thanks for your help --ron |
#20
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THe space thing was holding me up. I finally tried it with spaces and it
worked. I wasn't aware spaces were allowed in Excel formulas. 'ya learn something everyday. Many thanks -- Thanks for your help "Ron Rosenfeld" wrote: On Mon, 19 Nov 2007 19:34:00 -0800, John A wrote: clarification request: Using your first formula... would the entire formula including the characters beyond the comma (,) go into the formula bar with cell A1 selected? No. The formula refers to cell A1 which would be where you put your data. If you have a formula in the cell, and then overwrite it with data, you no longer have the formula. But of course you use the entire formula, if you want the result in feet and inches. Also, is there a space after the comma followed by "&MOD(A1,12)&"inches"? Yes. -- Thanks for your help --ron |
#21
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am in dire need of a How To Question regarding this Discussion group. I
would like to pose a question but when I click the NewQuestions button nothing happens... no window opens for me to enter my question it... that's why I am piggy-backing on this post... -- Thanks for your help "John A" wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? -- Thanks for your help "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#22
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ignore the flaky web interface to the newsgroup, and use a news server.
Outlook Express will do. Try news:microsoft.public.excel.misc If it asks for a news server, try msnews.microsoft.com -- David Biddulph "John A" wrote in message ... I am in dire need of a How To Question regarding this Discussion group. I would like to pose a question but when I click the NewQuestions button nothing happens... no window opens for me to enter my question it... that's why I am piggy-backing on this post... -- Thanks for your help "John A" wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? -- Thanks for your help "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ? |
#23
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One alternative, if you prefer using the internet, is to go through
Google Groups: http://groups.google.com/group/micro...c.excel.misc/? Hope this helps. Pete On Nov 25, 6:20 pm, John A wrote: I am in dire need of a How To Question regarding this Discussion group. I would like to pose a question but when I click the NewQuestions button nothing happens... no window opens for me to enter my question it... that's why I am piggy-backing on this post... -- Thanks for your help "John A" wrote: I found your question very similar to one our school nurse has posed: When our gym teachers measure students they report students' height in inches only ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"? -- Thanks for your help "tv" wrote: I would like to write a formula in excel, without using macros, to convert decimal feet to feet-inch-sixteenths. Can someone help me ?- Hide quoted text - - Show quoted text - |
#24
![]() |
|||
|
|||
![]()
Yes, I can definitely help you with that!
Here's a step-by-step guide on how to convert decimal feet to feet-inch-sixteenths using a formula in Excel:
That's it! The final result will be displayed in cell F1 in the format of feet-inch-sixteenths. Note: If you want to change the number of decimal places displayed in the final result, you can modify the "00" in the last formula to the desired number of decimal places. For example, if you want to display three decimal places, change "00" to "000".
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert decimal to inch & fraction | Excel Discussion (Misc queries) | |||
Convert decimal degree (lattitude/longitude) into Degree, | Excel Discussion (Misc queries) | |||
convert decimal number to time : convert 1,59 (minutes, dec) to m | Excel Discussion (Misc queries) | |||
formula for decimal | Excel Worksheet Functions | |||
how to convert total hours (HH:MM) into decimal number | Excel Worksheet Functions |