+ Reply to Thread
Results 1 to 4 of 4

Pull 2 Numbers From Cell Then Multiply Them

  1. #1
    Registered User
    Join Date
    07-18-2012
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2010
    Posts
    2

    Pull 2 Numbers From Cell Then Multiply Them

    I am new to excel and am trying to make a scripted invoice for some work I am doing. The cell I need to pull 2 numbers from is organized as:
    "Appointments ($8 x 18)"
    Is there a way to pull the 2 numbers from that cell and multiply them, showing the result in an adjacent cell? Thank you!
    Last edited by icschenholm; 07-18-2012 at 03:55 PM.

  2. #2
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Pull 2 Numbers From Cell Then Multiply Them

    You have only given one example so, based on that one:

    =LEFT(MID(A2,16,20),2)*SUBSTITUTE(RIGHT(A2,3),")","")

  3. #3
    Registered User
    Join Date
    07-18-2012
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Pull 2 Numbers From Cell Then Multiply Them

    Brilliant work Cutter, thank you! Works perfectly, I just changed the A2 to A11 for my purposes, and it works great, I really appreciate it. Is there any way you could explain how it works though? The old programmer in me is curious and can't figure it out just by reading it. Thanks again!
    Last edited by icschenholm; 07-18-2012 at 03:47 PM. Reason: quick question

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Pull 2 Numbers From Cell Then Multiply Them

    Actually, this is simpler

    =MID(A11,16,2)*SUBSTITUTE(RIGHT(A11,3),")","")

    The MID() function is stripping off the "Appointments ($" portion so it assumes every cell has that.
    So it takes 2 characters starting with #16 - in the example that's 8space

    The SUBSTITUTE() is getting rid of the closing bracket on the result of the RIGHT()
    The RIGHT() is taking the last 3 characters of the original value, in this case 18)

    Although the 2 portions are text results, they are converted to numeric by the multiplication.
    Last edited by Cutter; 07-18-2012 at 03:57 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