View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default How can I add whole numbers to fractions?

If you are starting with feet in decimal form, say A1 contains 12.1, then

=INT(A1)&"' "&INT(12*(A1-INT(A1)))&""" "&TEXT(MOD(12*(A1-INT(A1)),1),"##/##")

will display

12' 1" 1/5


as feet-inches-fractional inches


If you are starting out with feet and inches, then put them in separate cells.
--
Gary''s Student
gsnu200709


"aw" wrote:

I am trying to produce a chart that will add up FT-IN, is this possible with
Excel?