+ Reply to Thread
Results 1 to 8 of 8

Multi-tiered multiplication

  1. #1
    Registered User
    Join Date
    03-21-2013
    Location
    Ohio, US
    MS-Off Ver
    Excel 2007
    Posts
    8

    Multi-tiered multiplication

    First time poster and somewhat novice user.

    I'm running across a project that requires multi-tiered multiplication and wondering if I'm in the right place or way over my head (I believe both to be true).

    Here is an example using generic numbers:

    The entered value is 300

    The first 100 of that value needs to be multiplied by 5 (500)
    The next 150 needs to be multiplied by 4 (600)
    The next 250 (or last 50 in this case) needs to be multiplied by 3 (150)

    1,250 total.


    I'm guessing this is so simple I missed it, or way past my abilities. I believe the latter to be true but would love a starting point to start educating myself. In reality, the task would be easy enough for me to do by hand but looking to improve my skills.

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Multi-tiered multiplication

    Perhaps ?

    =100*5+150*4+(A1-250)*3

    In A1 put the value that you want
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Registered User
    Join Date
    03-21-2013
    Location
    Ohio, US
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Multi-tiered multiplication

    Beautiful. I had a feeling I was making it more difficult than it needed to be. My project is a bit more complicated but this is exactly what I needed as a starting point. Thanks so much and have a great day!

  4. #4
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Multi-tiered multiplication

    ....................

  5. #5
    Registered User
    Join Date
    03-21-2013
    Location
    Ohio, US
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Multi-tiered multiplication

    In my excitement, I spoke to quickly.

    What I was hoping for was a reusable function/formula that allows A1 to be modified/recalculated.

    Example:

    I plug "125" into A1

    The first 100 x5
    The remaining 25 x4

    I plug "275"

    The first 100 x5
    The next 150 x4
    The remaining 25 x3

    So on, so forth.

  6. #6
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Multi-tiered multiplication

    =if(a1<150,100*5+(a1-100)*4,100*5+150*4+((a1-(100+150))*3)) ?????

  7. #7
    Registered User
    Join Date
    03-21-2013
    Location
    Ohio, US
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: Multi-tiered multiplication

    Thanks again, Fortis. Using your previous logic, I tried plugging it into an IF function and started rolling about 20 minutes ago. Not that I'm taking credit by any means....lol

  8. #8
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Multi-tiered multiplication

    ..........................

+ 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