+ Reply to Thread
Results 1 to 5 of 5

k c

  1. #1
    Registered User
    Join Date
    02-14-2005
    Posts
    3

    Question k c

    In one of my spread sheets it need to be able to look up a match to a formulas result. For example after a formula has been calculated I need to be able to find the corresponding answer from a chart:
    c30*f30 = 4.6

    2 1.0 1.2 1.3 1.4 1.5 1.6 to 3.0
    4 3.1 3.2 3.3 3.4 3.5 3.6 to 5.0
    7 5.1 5.2 5.3 5.4 5.5 5.6 to 8.0
    11 8.1 8.2 8.3 8.4 8.5 8.6 to 12.0
    * 12.0 >

    I need the 4.6 to look up and post 4 as a pertenage. Would I use the vlookup or index or match?

  2. #2
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256
    This might help:

    =SUMPRODUCT((A1:A4)*(B1:U4=C30*F30))/100 ... formatted as % ?

    Ola Sandstrom


    I understand the first 4 rows, but I'm not sure what "*12>" shall return and what to return in case of "4.6 not found".

  3. #3
    Registered User
    Join Date
    02-14-2005
    Posts
    3
    I think I need to clarify my needs a little better. If the formula returns a number of 5.3 I need it to post the number that is in the right column #7. Any formula return greater than 12.0 need to post the astric * for non compliance.

    Degree of Multiplication
    Nonconformance Factor
    1.0 > =/<3.0 2
    3.1 > =/<5.0 4
    5.1 > =/<8.0 7
    8.1 > =/<12.0 11
    > 12.0 *Nonconformance

    5.3 x 7 = 37%

  4. #4
    Registered User
    Join Date
    02-14-2005
    Posts
    3
    I think I need to clarify my needs a little better. If the formula returns a number of 5.3 I need it to post the number that is in the right column #7. Any formula return greater than 12.0 need to post the astric * for non compliance.

    Degree of Multiplication
    Nonconformance Factor
    1.0 > =/<3.0 2
    3.1 > =/<5.0 4
    5.1 > =/<8.0 7
    8.1 > =/<12.0 11
    > 12.0 *Nonconformance

    5.3 x 7 = 37%

    when I post this the multiplication factors of 2, 4, 7, 11 & *Nonconformance all runs together.
    Last edited by kchapman; 02-16-2005 at 03:15 PM.

  5. #5
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256
    How about:

    =IF(AND(C30*F30>=1,C30*F30<12),VLOOKUP(C30*F30,{1;2,3;4,5;7,8;11},2,1)*C30*F30/100,"*")

    where the cell is formatted as %

    Ola Sandstrom

+ 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