+ Reply to Thread
Results 1 to 12 of 12

Retrieve partial number from cells

  1. #1
    Registered User
    Join Date
    10-19-2014
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    7

    Question Retrieve partial number from cells

    Hi, I am new to this forum, and VERY new to the excel formula.
    I am having trouble at work to retrieve partial number from cells.
    Here is the source data in Column A:

    A
    S$100.09 @ 0.587682
    USD 8859 @ 0.593472
    EURO5,332.32@1.6633

    (sometimes there's no space, sometimes there's no comma, but "@" will always be there to separate the amount and rate)

    Below are what I would like to achieve in Column B to D .

    B
    SGD
    USD
    EUR

    C
    100.09
    8859
    5332.32

    D
    0.587682
    0.593472
    1.6633

    It would really be appreciated if someone could help me to sort this out.
    I tried to google but I really have no clue with formulae like SUMPRODUCT, INDEX, LEN, etc...
    Really thanks!

  2. #2
    Forum Expert azumi's Avatar
    Join Date
    12-10-2012
    Location
    YK, Indonesia
    MS-Off Ver
    Excel 365
    Posts
    2,406

    Re: Retrieve partial number from cells

    Need clarify for currencies, when you have :

    S$100.09 @ 0.587682

    Why the results is :

    SGD

    Thanks

  3. #3
    Forum Expert azumi's Avatar
    Join Date
    12-10-2012
    Location
    YK, Indonesia
    MS-Off Ver
    Excel 365
    Posts
    2,406

    Re: Retrieve partial number from cells

    Put in Column B and copied down and cross :

    =TRIM(MID(SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE($A1,"@",""),","," "))," ",REPT(" ",LEN(TRIM(SUBSTITUTE(SUBSTITUTE($A1,"@",""),","," "))))),(COLUMNS(A1:$A$1)-1)*LEN($A1)+1,LEN(TRIM(SUBSTITUTE(SUBSTITUTE($A1,"@",""),","," ")))))

    Hope it works

  4. #4
    Registered User
    Join Date
    10-19-2014
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    7

    Re: Retrieve partial number from cells

    Hi azumi, thanks for the speed response!!
    for SGD or S$ it isn't that important, my apology.
    But for the currency amount, I will need a column dedicated for just number only, and another column for just the exchange rate.
    Thanks again in advance!!

  5. #5
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,941

    Re: Retrieve partial number from cells

    Helper column (B1):
    Please Login or Register  to view this content.
    Column C:
    Please Login or Register  to view this content.
    column D:
    Please Login or Register  to view this content.
    column E:
    Please Login or Register  to view this content.
    Ben Van Johnson

  6. #6
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Cool Re: Retrieve partial number from cells

    I think this will do for many of the possible combinations..
    For Currency Name
    Please Login or Register  to view this content.
    For Currency Amount
    Please Login or Register  to view this content.
    For Rate
    Please Login or Register  to view this content.
    Check the attached file..
    Attached Files Attached Files
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

  7. #7
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Retrieve partial number from cells

    try this formula in B1 and pull formula to the right and then down

    =TRIM(MID(SUBSTITUTE(TRIM(SUBSTITUTE(REPLACE($A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},$A1&1234567890)),," "),"@"," "))," ",REPT(" ",255)),(COLUMNS($A:A)-1)*255+1,255))

    Row\Col
    A
    B
    C
    D
    1
    S$100.09 @ 0.587682 S$ 100.09 0.587682
    2
    USD 8859 @ 0.593472 USD 8859 0.593472
    3
    EURO5,332.32@1.6633 EURO 5,332.32 1.6633
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  8. #8
    Forum Expert azumi's Avatar
    Join Date
    12-10-2012
    Location
    YK, Indonesia
    MS-Off Ver
    Excel 365
    Posts
    2,406

    Re: Retrieve partial number from cells

    For Column C (Number Currencies):
    =MID(LEFT(SUBSTITUTE(SUBSTITUTE(A1,"$"," "),","," "),FIND("@",SUBSTITUTE(SUBSTITUTE(A1,"$"," "),","," "))-1),FIND(" ",SUBSTITUTE(SUBSTITUTE(A1,"$"," "),","," "))+1,LEN(SUBSTITUTE(SUBSTITUTE(A1,"$"," "),","," ")))

    For Exchange Rate:
    =RIGHT(A1,LEN(A1)-SEARCH("@",A1))

  9. #9
    Registered User
    Join Date
    10-19-2014
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    7

    Re: Retrieve partial number from cells

    Quote Originally Posted by AlKey View Post
    try this formula in B1 and pull formula to the right and then down

    =TRIM(MID(SUBSTITUTE(TRIM(SUBSTITUTE(REPLACE($A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},$A1&1234567890)),," "),"@"," "))," ",REPT(" ",255)),(COLUMNS($A:A)-1)*255+1,255))

    Row\Col
    A
    B
    C
    D
    1
    S$100.09 @ 0.587682 S$ 100.09 0.587682
    2
    USD 8859 @ 0.593472 USD 8859 0.593472
    3
    EURO5,332.32@1.6633 EURO 5,332.32 1.6633
    Hi Alkey, this works like dark magic! But the results wouldn't be recognized as numbers.

  10. #10
    Registered User
    Join Date
    10-19-2014
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    7

    Re: Retrieve partial number from cells

    Thanks Vikas! The "Currency Amount" assumes there'd be a space after the currency name, but that isn't always the case. So when the original data says "SGD340" the formula returned only "40".

  11. #11
    Registered User
    Join Date
    10-19-2014
    Location
    Asia
    MS-Off Ver
    2010
    Posts
    7

    Re: Retrieve partial number from cells

    Hey thank you all for your help!
    To Alkey,
    I added =Value() to your formula and now it worked the way I want. I still don't have a clue how one formula would get me all three parts I wanted Anyway THANKS!

  12. #12
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Retrieve partial number from cells

    Thank you for the feedback!
    Sorry, did know that you need those "numbers" converted to real numbers.

    Please mark thread as "Solved" if your issue has been resolved. (Selecting Thread Tools -> Mark thread as Solved).

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Retrieve partial cell data
    By royalB in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-31-2014, 06:59 PM
  2. Replies: 4
    Last Post: 06-08-2013, 01:52 PM
  3. [SOLVED] How can I count downward a specific number of cells to retrieve data?
    By rcane in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 01-29-2013, 04:47 PM
  4. Replies: 16
    Last Post: 04-20-2010, 01:27 PM
  5. Replies: 4
    Last Post: 02-11-2010, 09:10 AM

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