ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How can i see on excel feet and inches from decimal system? (https://www.excelbanter.com/excel-worksheet-functions/74168-how-can-i-see-excel-feet-inches-decimal-system.html)

Sharky

How can i see on excel feet and inches from decimal system?
 
I need to see feet and inches on the screen, how can i do it

for example, 7.8333333 i need to see it like 7'10"
how can i do it?

GerryK

How can i see on excel feet and inches from decimal system?
 
=ROUNDDOWN(A1/12,0)&" feet "&A1-12*ROUNDDOWN(A1/12,0)&" inches"
you can replace the words with ' and "

HTH

"Sharky" wrote:

I need to see feet and inches on the screen, how can i do it

for example, 7.8333333 i need to see it like 7'10"
how can i do it?


Richard Buttrey

How can i see on excel feet and inches from decimal system?
 
On Mon, 27 Feb 2006 09:20:28 -0800, Sharky
wrote:

I need to see feet and inches on the screen, how can i do it

for example, 7.8333333 i need to see it like 7'10"
how can i do it?


With 7.8333333 in A1
Put
=LEFT(A1,FIND(".",A1)-1)&"'"&ROUND(RIGHT(A1,LEN(A1)-FIND(".",A1)+1)*12,0)&""""
in B1

HTH
Richard Buttrey
__

Don Guillett

How can i see on excel feet and inches from decimal system?
 
or
=INT(C10)&"'"&ROUND(-(INT(C10)-C10)*12,0)&""""

--
Don Guillett
SalesAid Software

"Sharky" wrote in message
...
I need to see feet and inches on the screen, how can i do it

for example, 7.8333333 i need to see it like 7'10"
how can i do it?




Bernard Liengme

How can i see on excel feet and inches from decimal system?
 
Or format the cell with custom format # ??/12
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email


"Sharky" wrote in message
...
I need to see feet and inches on the screen, how can i do it

for example, 7.8333333 i need to see it like 7'10"
how can i do it?





All times are GMT +1. The time now is 07:29 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com