View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Richard Buttrey
 
Posts: n/a
Default 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
__