+ Reply to Thread
Results 1 to 7 of 7

Need to Extract Data from middle of cell

  1. #1
    Forum Contributor
    Join Date
    08-08-2006
    Posts
    203

    Need to Extract Data from middle of cell

    I have data in cells that looks like this

    This is all in one cell.
    Please Login or Register  to view this content.
    I need a macro that extracts "TTD3" and "24" and puts them in separate cells.

    Variations: sometimes instead of TTD3, its WS20, SM6, RTD4, GW13, RT40, or10/6RS.

    Quantity can be anywhere from 15 to 468.

    Here are a couple more examples

    Please Login or Register  to view this content.

    The other data in the cell isnt needed, it can be deleted or left as long as the part number and quantity end up in different cells, so for example A1 would start with "003 000969736 082687112108 UPC SM6 12 EA 6.8800 4/3 82.56" and then B1 would contain "SM6" and C1 would contain "12"

    Thank you

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454
    Hi,

    You could extract this data using Data > Text to Columns, with space as the delimeter.
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  3. #3
    Forum Contributor ptm0412's Avatar
    Join Date
    04-16-2008
    Location
    Vietnam
    MS-Off Ver
    Office 2003 and 2007
    Posts
    129
    002 000950715 082687862003 UPC WS20 48 EA 3.9900 8/3 191.52
    003 000969736 082687112108 UPC SM6 12 EA 6.8800 4/3 82.56
    I think Excel Function is OK:
    Please Login or Register  to view this content.
    Note:
    Trim(A1) to prevent A1 from extra space between character group.
    31 = len("002 000950715 082687862003 UPC ") = const for every strings
    Find(" ",....) - 1 : is the position of the first character in the string after cut 31 left characters
    and so on
    You may define a range name Str1 = RIGHT(TRIM($A1),LEN($A1)-31) when the cell point is in row 1.
    And another range name Str2 = RIGHT(TRIM($A1),LEN($A1)-31-LEN($B1)-1) when the cell point is also in row 1.
    Then the formulas are:
    Please Login or Register  to view this content.

  4. #4
    Forum Contributor Portuga's Avatar
    Join Date
    02-20-2004
    Location
    Portugal
    MS-Off Ver
    365
    Posts
    852
    It seems that you always want word 4 and 5 of the text.
    If that is the case, you can use the following code to extract word 4:
    Please Login or Register  to view this content.
    And for word 5:
    Please Login or Register  to view this content.
    If you concatenate both, you should have what you want in a single (massive) formula.
    If you found the solution to your question. Mark the thread as "Solved"
    Thank everyone that helped you with a valid solution by clicking on their

    There is no such thing as a problem, only a temporary lack of a solution

  5. #5
    Forum Contributor
    Join Date
    08-08-2006
    Posts
    203
    Quote Originally Posted by sweep
    Hi,

    You could extract this data using Data > Text to Columns, with space as the delimeter.
    I think this will work.

    Thank you

  6. #6
    Forum Contributor ptm0412's Avatar
    Join Date
    04-16-2008
    Location
    Vietnam
    MS-Off Ver
    Office 2003 and 2007
    Posts
    129
    Here is the attachment that I calculate in both ways: function with and without range name
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    03-12-2009
    Location
    ch
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Need to Extract Data from middle of cell

    There is a good example at http://www.biterscripting.com/SS_CSV.html .

    I think you are looking to extract words 5 (part) and 6 (qty).

    Assuming, your data is in x.csv, I think the following commands should work. ( I am just modifying that sample script to suit your requirements. )

    var str data, new_data ; cat x.csv > $data
    while ($data <> "")
    do
    var str row ; lex -e "1" $data > $row
    # Get the 5th and 6th word and add into next columns.
    var str part, qty
    wex -e "5" $row > $part
    wex -e "6" $row > $qty
    set $row = $row + "," + $part + "," +$qty
    set $new_data = $new_data + "\n" + $row
    done

    # Write new data back.
    echo $new_data > x.csv
    J
    Last edited by JenniC; 03-12-2009 at 01:19 PM.

+ 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