![]() |
formula to convert decimal feet to feet inch sixteenths
I would like to write a formula in excel, without using macros, to convert
decimal feet to feet-inch-sixteenths. Can someone help me ? |
Answer: formula to convert decimal feet to feet inch sixteenths
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". |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
"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? |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 |
Converting inches to feet + inches
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 |
formula to convert decimal feet to feet inch sixteenths
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 |
Converting inches to feet + inches
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"? |
formula to convert decimal feet to feet inch sixteenths
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 |
Converting inches to feet + inches
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"? |
Converting inches to feet + inches
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"? |
formula to convert decimal feet to feet inch sixteenths
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 |
formula to convert decimal feet to feet inch sixteenths
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 |
formula to convert decimal feet to feet inch sixteenths
On Tue, 20 Nov 2007 06:30:01 -0800, John A
wrote: 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 You're welcome. The space is merely to "make it look good". It is entirely optional. --ron |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 ? |
formula to convert decimal feet to feet inch sixteenths
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 - |
formula to convert decimal feet to feet inch sixteenths
If you just want feet and inches from a decimal, use this formula:
(decimal in A1) =INT(A1)&"'-"&TEXT(MOD(A1),1)*12,"#??")&"""" |
formula to convert decimal feet to feet inch sixteenths
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,"#??")&"""" |
All times are GMT +1. The time now is 12:57 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com