Embeded IF - between ranges

E

Emily

Using Excel 3. I am trying to assign ABC codes to long list of products
based on % of sales.

A10 is part #, B10 is %. In C10, need formula to pick a code from following
table. The table changes periodically.

Code A=over 80%
Code B=between 60 and 80%
Code C=between 40...60%
Code D = less than 40%
 
T

T. Valko

The table changes periodically.

Create a 2 column table like this...

0%...D
40%...C
60%...B
80%...A

Assume the table is in the range J2:K5

Then...this formula entered in C10 and copied down:

=LOOKUP(B10,J$2:K$5)
 
A

Ashish Mathur

Hi,

After arranging the table as mentioned in the previous post, you may also
use this formula

=VLOOKUP(B10,J$2:K$5,2,1)

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Combining Nested IF statement with Between operator 2
Variable Sumproduct Range 6
Assistance please 2
Frequency Formula 5
'if' and 'and' 2
Nested IF Function 5
IF function 4
Possible? 1

Top