Apr 27, 2006 #1 yli Structural Joined May 7, 2004 Messages 11 Location US I would like to format the cell in such way that if I type in 2.5, the cell will show as 2'-6", can anyone tell me how? Thanks
I would like to format the cell in such way that if I type in 2.5, the cell will show as 2'-6", can anyone tell me how? Thanks
Apr 27, 2006 #2 handleman Automotive Joined Jan 7, 2005 Messages 3,411 Location US I don't think you can do this with a format. Check out http://www.mrexcel.com/tip012.shtml Upvote 0 Downvote
Apr 27, 2006 Thread starter #3 yli Structural Joined May 7, 2004 Messages 11 Location US Thanks Handleman, I appreciate your response and I will try it out. Upvote 0 Downvote
May 3, 2006 1 #4 stick1 Mechanical Joined Sep 14, 2000 Messages 38 Location US Also take a look at: http://www.mvps.org/dmcritchie/excel/formula.htm Try formatting cell as: # ??/12\" under custom format. Typing in 2.5 would result in 2 6/12" Or type value in column A, in the same row in column B, put the formula: =INT(A3)&"' "&ROUND(12*MOD(A3,1),1)&"''" So in A1 type 2.5, and in cell B1 2' 6" will appear. Upvote 0 Downvote
Also take a look at: http://www.mvps.org/dmcritchie/excel/formula.htm Try formatting cell as: # ??/12\" under custom format. Typing in 2.5 would result in 2 6/12" Or type value in column A, in the same row in column B, put the formula: =INT(A3)&"' "&ROUND(12*MOD(A3,1),1)&"''" So in A1 type 2.5, and in cell B1 2' 6" will appear.
May 4, 2006 Thread starter #5 yli Structural Joined May 7, 2004 Messages 11 Location US Thanks Stick1 ! GREAT TIPS. yli Upvote 0 Downvote