+ Reply to Thread
Results 1 to 3 of 3

Calculating values between two numbers

  1. #1
    Registered User
    Join Date
    07-18-2011
    Location
    Grand Rapids, Michigan
    MS-Off Ver
    Excel 2003
    Posts
    2

    Calculating values between two numbers

    I am trying to assign a point value to a measurement between a minimum and maximum tolerance range.

    Minimum range is 2 with a point value of 10.

    Maximum range is 6 with a point value of 2.

    My measurement is 3.23 and I need to calculate its point value.

    I need a formula that is able to reference different tolerance values and different point values.

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Calculating values between two numbers

    Welcome to the Forum!

    Very important point: Is your point scale linear? If so then you can do this. For readability set up the following named ranges (below, the word "range" refers to a range of numbers, not an Excel range):

    RangeMin: the lowest value in the range
    PointMin: the points for the lowest value
    RangeMax: the highest value in the range
    PointMax: the points for the highest value

    Then to calculate points for a measurement in A1:

    =PointMin+(PointMax-PointMin)*(A1-RangeMin)/(RangeMax-RangeMin)

    If your point scale is nonlinear then you need to describe how it works.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Registered User
    Join Date
    07-18-2011
    Location
    Grand Rapids, Michigan
    MS-Off Ver
    Excel 2003
    Posts
    2

    Smile Re: Calculating values between two numbers

    My point scale is linear and your solution worked perfectly. Thankyou!

+ 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