+ Reply to Thread
Results 1 to 3 of 3

Conversions

  1. #1
    ICMIII
    Guest

    Conversions

    I need to know how to convert a number with decimals (10.75) to display
    in feet and inches (10'-9") in an Excel workbook.

  2. #2
    Myrna Larson
    Guest

    Re: Conversions


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

    On Mon, 21 Feb 2005 12:55:07 -0800, ICMIII <ICMIII@discussions.microsoft.com>
    wrote:

    >I need to know how to convert a number with decimals (10.75) to display
    >in feet and inches (10'-9") in an Excel workbook.



  3. #3
    Jason Morin
    Guest

    Re: Conversions

    If you only need precision to be to the nearest inch,
    this should work:

    =INT(A1)&"'-"&ROUND(MOD(A1,1)*12,0)&""""

    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >I need to know how to convert a number with decimals

    (10.75) to display
    >in feet and inches (10'-9") in an Excel workbook.
    >.
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1