+ Reply to Thread
Results 1 to 5 of 5

Use multipliers from 4 bucket options

  1. #1
    Registered User
    Join Date
    08-25-2014
    Location
    Philadelphia
    MS-Off Ver
    2010
    Posts
    2

    Use multipliers from 4 bucket options

    Hello I have 4 dollar amounts I'm looking to use with a multiplier. The bucket multiplyers would be as follows:

    $2,000-$5,000
    $5,000-$10,000
    $10,000-$50,000
    $50,000+

    Each one of these values has a (decimal) multiplyer . I'm looking to set up a formula where if the total entered was $25,000 it would multiply that with the multiplyer for the $10,000-$50,000 bucket. Just as eaily if $100,000 was entered it would pull from the entered bucket for $50,000+

    Any help is greatly appreciated!

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2508 Win 11
    Posts
    24,959

    Re: Use multipliers from 4 bucket options

    Assume your value to multiply is in Cell A1. Your Formula in B1

    =if(and(A1>=2000,A1<5000),Multiplier1 *A1, if(and(A1>=5000,A1<10000),Multiplier2 *A1, if(and(A1>=10000,A1<50000),Mulitplier3 * A1,if(A1>=50000,multiplier4 * A1,0))))
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Registered User
    Join Date
    08-25-2014
    Location
    Philadelphia
    MS-Off Ver
    2010
    Posts
    2

    Re: Use multipliers from 4 bucket options

    Amazing stuff. Thank you so much!

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Use multipliers from 4 bucket options

    Another way:

    A
    B
    C
    1
    Amt
    Mult
    2
    $0
    0
    3
    $2,000
    2%
    4
    $5,000
    3%
    5
    $10,000
    4%
    6
    $50,000
    5%
    7
    8
    $25,000
    $1,000
    B8: =A8 * LOOKUP(A8, $A$2:$B$6)
    9
    $100,000
    $5,000
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Use multipliers from 4 bucket options

    This will also work:

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Replace the 2,4,6,10 with your multipliers. I also boosted the bottom of each range by 1 as the top value of each range is the bottom value of the next range...can't be in 2 places at once.
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

+ 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. How to use Percentile based on a bucket list?
    By Beacon28 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-09-2014, 06:32 PM
  2. [SOLVED] Creating a Bucket List
    By jemmers in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-19-2014, 02:22 PM
  3. [SOLVED] Bucket data into a time horizon using given dates
    By morayman in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 01-28-2013, 10:50 AM
  4. [SOLVED] Count unique cases in a weekly bucket
    By melnemac32 in forum Excel General
    Replies: 2
    Last Post: 10-25-2012, 01:21 PM
  5. counting the number of dates in an aging bucket
    By englerbd in forum Excel General
    Replies: 1
    Last Post: 10-14-2008, 10:39 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