+ Reply to Thread
Results 1 to 4 of 4

Extract number from string

Hybrid View

  1. #1
    Registered User
    Join Date
    06-23-2014
    Location
    malaysia
    MS-Off Ver
    2010
    Posts
    30

    Extract number from string

    I want split number in STRING below in two different column. Right now only able to extract one.

    Column B6 = "Buy only when USD50 and not over USD70"

    Column C6 Formula =LOOKUP(99^99,--("0"&MID(B6,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},B6&"0123456789")),ROW($1:$10000))))
    Column C6 Answer = 50

    Column D6 Formula =LOOKUP(99^99,--("0"&MID(B6,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},B6&"0123456789")),ROW($1:$10000))))
    Column D6 Answer = 70

    I also want to 70 but cant figure out the right. Can somebody help. Thanks

  2. #2
    Valued Forum Contributor
    Join Date
    12-28-2014
    Location
    NSW, Australia
    MS-Off Ver
    MS365
    Posts
    606

    Re: Extract number from string

    Try this in cell D6:
    =LOOKUP(99^99,--("0"&MID(MID(B6,SEARCH(C6,B6)+3,99),MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},MID(B6,SEARCH(C6,B6)+3,99)&"0123456789")),ROW($1:$10000))))

    Edit: Sorry of that's overly long. I do really understand how that formula works. All I did was replace B6 with the end of the string following the answer in C6. So basically, MID(B6,SEARCH(C6,B6)+3,99) just searches for the number in C6 and provides everything that follows that number for the original formula to use.


    Edit2: Of course, if the last number was always a 2 digit number at the end, then simply: =RIGHT(B6,2)
    Last edited by Beamernsw; 02-21-2016 at 12:52 AM.

  3. #3
    Registered User
    Join Date
    06-23-2014
    Location
    malaysia
    MS-Off Ver
    2010
    Posts
    30

    Re: Extract number from string

    Quote Originally Posted by Beamernsw View Post
    Try this in cell D6:
    =LOOKUP(99^99,--("0"&MID(MID(B6,SEARCH(C6,B6)+3,99),MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},MID(B6,SEARCH(C6,B6)+3,99)&"0123456789")),ROW($1:$10000))))

    Edit: Sorry of that's overly long. I do really understand how that formula works. All I did was replace B6 with the end of the string following the answer in C6. So basically, MID(B6,SEARCH(C6,B6)+3,99) just searches for the number in C6 and provides everything that follows that number for the original formula to use.


    Edit2: Of course, if the last number was always a 2 digit number at the end, then simply: =RIGHT(B6,2)
    Hey there! Thank you very much. Appreciate your help

  4. #4
    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: Extract number from string

    Here is how to do this with one formula

    Enter formula in C6 and pull it to the right

    Formula: copy to clipboard
    =TRIM(LEFT(SUBSTITUTE(TRIM(MID(SUBSTITUTE($B6,"USD",REPT(" ",50)),50*COLUMNS($B:B),50))," ",REPT(" ",15)),15))+0


    v B C D
    6 Buy only when USD50 and not over USD70 50 70
    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

+ 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. Mid and Mod to extract a number from string
    By jonboy6257 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-22-2013, 02:12 PM
  2. [SOLVED] How to Extract A Number from String if Text within the String Equals XYZ
    By tyrsfury in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 11-15-2012, 03:30 PM
  3. [SOLVED] Extract a mainly numeric string (ISSN number) from an arbitrary string
    By Buzzed Aldrin in forum Excel Programming / VBA / Macros
    Replies: 18
    Last Post: 07-04-2012, 01:49 PM
  4. [SOLVED] How to extract Fist number, Last number from string and SUM
    By Xiaojiang in forum Excel General
    Replies: 5
    Last Post: 05-07-2012, 01:39 AM
  5. Extract Number from String Help
    By kobe4ever8 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-31-2011, 02:25 PM
  6. Extract number out of a string
    By mkvassh in forum Excel General
    Replies: 4
    Last Post: 04-07-2010, 05:25 PM
  7. Extract Only Number From A String
    By lehainam in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-26-2006, 06:45 AM
  8. How to extract the Number from a String
    By johnbest in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 12-19-2005, 02:30 PM

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