+ Reply to Thread
Results 1 to 8 of 8

Sliding scale formula

  1. #1
    Registered User
    Join Date
    02-15-2006
    Posts
    13

    Sliding scale formula

    Hello All...

    I always have trouble with the sliding scale formulas with if statements so any help would be greatly appreciated!

    Basically, the formula calls for "if goal is x% then payout is Y"

    If goal is Pays
    80% 7.5
    95% 8.25
    100% 15.00
    103% 15.90
    110% 18.00
    115% 75.00

    I'm having problems calculating the sliding scale portion of the formula. For example, if the goal is 83% then calculate the sliding scale portion based on overall.
    Last edited by vbidiot; 05-11-2009 at 08:06 PM.

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

    Re: Sliding scale formula

    =lookup(a1, {0.8,0.95,1,1.03,1.15},{7.5,8.25,15,15.9,18,75})
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Contributor
    Join Date
    04-01-2009
    Location
    Irvine, CA
    MS-Off Ver
    Excel 2010
    Posts
    280

    Re: Sliding scale formula

    SHG,

    I think you missed a value in your formula:

    =LOOKUP(D1, {0.8,0.95,1,1.03,1.1,1.15},{7.5,8.25,15,15.9,18,75})

    As an alternative (not as nice) you could nest ifs:

    =IF(A1>1.14,75,IF(A1>1.09,18,IF(A1>1.02,15.9,IF(A1>0.99,15,IF(A1>0.94,8.25,IF(A1>0.79,7.5,0))))))

  4. #4
    Registered User
    Join Date
    02-15-2006
    Posts
    13

    Re: Sliding scale formula

    The above works fine but doesn't take into consideration of the numbers in-between. For example, if the number is 83%, then the payout should be a number between 7.5 and 8.25.

  5. #5
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Sliding scale formula

    Try this:

    Book1(1).xls

    Won't work for less than 0,80

  6. #6
    Registered User
    Join Date
    02-15-2006
    Posts
    13

    Re: Sliding scale formula

    Thanks ...works perfectly

  7. #7
    Registered User
    Join Date
    07-11-2011
    Location
    England
    MS-Off Ver
    Office 2019
    Posts
    58

    Re: Sliding scale formula

    Following on from this, I have a quick question.

    I have figures such as 1, 1.5, 2, 2.5, 3...with set figures relating to each (63, 80, 98, 115, 136) but using the above formula - the trend doesnt match up following through the figures....can anyone help?!

  8. #8
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Sliding scale formula

    Please open new thread.

    maybe you could also check rules to name your thread (to get solution faster).

+ 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