+ Reply to Thread
Results 1 to 5 of 5

Multiply numbers from text

  1. #1
    Registered User
    Join Date
    11-20-2013
    Location
    Romania
    MS-Off Ver
    Excel 2007
    Posts
    3

    Multiply numbers from text

    Hello. I'm need to create multiple lists with different measurements in different areas. In the first cell is the text that begins with the area (E1) and continues with the measurements (product or sum). It can be best seen in the following table:

    example.png

    Columns A,B,C, D & E are merged and column F is (in this case) the product of the values from the first cell. I tried this formula i found on Google: =SUMPRODUCT(- -ISNUMBER(MID(A1,ROW($A$1:$A$200),1)+0)) , but I couldn't figure out how to the different calculations.

    To be more clear, I only want to multiply, add or subtract values such as "9,43", "5,60", "3,16" from the text in the merged cells. The numbers represent measurements and decimals may vary from 1 to 3.

    Awaiting your blessed help

  2. #2
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Multiply numbers from text

    A small UDF makes it neat:
    Please Login or Register  to view this content.
    Use as:
    Formula: copy to clipboard
    Please Login or Register  to view this content.




    A
    B
    1
    E1 - 9.43 m * 5.60 m
    52.808
    2
    E2 - 3.16m * 5.60 m
    17.696
    3
    E3 - 6.13m * 6.12 m
    37.5156
    4
    E4 - 5.60 m * 2.97 m
    16.632




    A
    B
    1
    E1 - 9.43 m * 5.60 m
    =areafromtext(A1)
    2
    E2 - 3.16m * 5.60 m
    =areafromtext(A2)
    3
    E3 - 6.13m * 6.12 m
    =areafromtext(A3)
    4
    E4 - 5.60 m * 2.97 m
    =areafromtext(A4)
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  3. #3
    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: Multiply numbers from text

    Or by formula
    in B2 and copy formula down

    =LOOKUP(1E+307,0+LEFT(TRIM(SUBSTITUTE(REPLACE(A2,1,FIND("-",A2),"")," m","")),ROW(A$1:A$10000)))*LOOKUP(1E+307,0+RIGHT(TRIM(SUBSTITUTE(REPLACE(A2,1,FIND("-",A2),"")," m","")),ROW(A$1:A$10000)))

    A
    B
    2
    E1 - 9.43 m * 5.60 m
    52.808
    3
    E2 - 3.16m * 5.60 m
    17.696
    4
    E3 - 6.13m * 6.12 m
    37.516
    5
    E4 - 5.60 m * 2.97 m
    16.632
    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

  4. #4
    Registered User
    Join Date
    11-20-2013
    Location
    Romania
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Multiply numbers from text

    Olly, I added the UDF exactly as you wrote it and I get a #VALUE error. Do I need to add anything else?

    AlKey, I also tried your formula, excel says there's an error in the formula and directs me to all the commas ","

  5. #5
    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: Multiply numbers from text

    I think in your region you should use semi-colon instead of comma. Simply replace all instances of this , with this ;

    =LOOKUP(1E+307;0+LEFT(TRIM(SUBSTITUTE(REPLACE(A2;1,FIND("-";A2);"");" m";""));ROW(A$1:A$10000)))*LOOKUP(1E+307;0+RIGHT(TRIM(SUBSTITUTE(REPLACE(A2;1,FIND("-";A2);"");" m";"")),ROW(A$1:A$10000)))


    Here is also a smaller verion

    =TRIM(MID(SUBSTITUTE(MID(A2;FIND("-";A2)+2;255);"m";REPT(" ";255));1;255))*SUBSTITUTE(REPLACE(A2;1;FIND("*";A2)+1;"");"m";"")
    Last edited by AlKey; 09-03-2014 at 04:36 PM.

+ 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. Replies: 0
    Last Post: 07-16-2012, 04:01 PM
  2. IF function to multiply by different numbers
    By t.jones in forum Excel General
    Replies: 3
    Last Post: 10-26-2011, 08:58 AM
  3. How do I multiply numbers?
    By reckyroo in forum Excel General
    Replies: 5
    Last Post: 05-09-2006, 04:10 AM
  4. multiply a row of numbers by %
    By jshgolf in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-13-2006, 12:55 PM
  5. How do Multiply whole numbers by decimals
    By help in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 09-30-2005, 06:05 PM

Tags for this Thread

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