+ Reply to Thread
Results 1 to 4 of 4

Reformat user input data

  1. #1
    Registered User
    Join Date
    02-26-2007
    Posts
    2

    Question Reformat user input data

    Hello-
    I have a spreadsheet where a column reads:

    4' 4"
    4 ft. 4in.
    52in.
    etc...

    I need to convert everything to inches without a quotation mark or abbreviation (in.). is this possible?

    Thanks!
    mj

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by michaelj07
    Hello-
    I have a spreadsheet where a column reads:

    4' 4"
    4 ft. 4in.
    52in.
    etc...

    I need to convert everything to inches without a quotation mark or abbreviation (in.). is this possible?

    Thanks!
    mj
    Hi,

    the formula

    =IF(LEN(A1)>LEN(SUBSTITUTE(A1,"'","")),TRIM(LEFT(A1,FIND("'",A1)-1)*12)+VALUE(MID(SUBSTITUTE(A1,"""",""),FIND("'",A1)+1,LEN(A1))),IF(LEN(A1)>LEN(SUBSTITUTE(A1,"ft.","")),TRIM(LEFT(A1,FIND("ft.",A1)-1)*12)+VALUE(MID(SUBSTITUTE(A1,"in.",""),FIND("ft.",A1)+3,LEN(A1))),VALUE(SUBSTITUTE(A1,"in",""))))

    does the three shown, you may need to adjust for minor variations.

    hth
    ---
    Si fractum non sit, noli id reficere.

  3. #3
    Registered User
    Join Date
    02-26-2007
    Posts
    2

    Unhappy

    Thank you, but unfortunately the formula would need to cover a wide array of user input styles; more than just the three I mentioned. As humans, we can look at numbers such as 4ft 4in, 4' 4", 4 ft. 4", and know they all equate to 52"- I was hoping the program could do the same.

  4. #4
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by michaelj07
    Thank you, but unfortunately the formula would need to cover a wide array of user input styles; more than just the three I mentioned. As humans, we can look at numbers such as 4ft 4in, 4' 4", 4 ft. 4", and know they all equate to 52"- I was hoping the program could do the same.
    as it could, if you have the resources and the manpower to write the code, but until then we just code for what we see, or are told about.

    ---

+ 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