MS Excel 2002 formulas

E

eloughrey

I am constructing a Sales Order Form and I keep getting an error message that
I have too many arguments in the formula. The result that I am looking for
is: In column E the user will enter a value; IF the value in column E is <=
37, then multiply the value in column B by 14.3; IF the value in column E is
37 and <= 43, then multiply the value in column B by 15.05; IF the value in
column E is >43 and <=49, then mulitiply the value in column B by 15.8; IF
the value in column E is greater than 49, then return "Error - Check O-T-O".
Any help would be appreciated.
 
N

Niek Otten

So what's your formula?

Consider using VLOOKUP. A tutorial can be found here:

http://www.contextures.com/xlFunctions02.html

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I am constructing a Sales Order Form and I keep getting an error message that
| I have too many arguments in the formula. The result that I am looking for
| is: In column E the user will enter a value; IF the value in column E is <=
| 37, then multiply the value in column B by 14.3; IF the value in column E is
| >37 and <= 43, then multiply the value in column B by 15.05; IF the value in
| column E is >43 and <=49, then mulitiply the value in column B by 15.8; IF
| the value in column E is greater than 49, then return "Error - Check O-T-O".
| Any help would be appreciated.
|
 
T

T. Valko

Try this:

=IF(E1>49,"Error - Check O-T-O",IF(E1>43,15.8,IF(E1>37,15.05,14.3)*B1))
 

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


Top