our cost to customers cost

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

for office 2003, would like to enetr "our cost" in one cell and in another
cell display the customer's cost.
example: if our cost is $50 or more, we would multiply it by 1.4 to get
cust. cost, if the price were less than $50, we would multiply it by 1.55 to
get cust. cost, if it were less than $20, multiply it by 2.1 and so on. if
anyone can come up with a formula to help me do this it would be grate.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...dg=microsoft.public.excel.worksheet.functions
 
Our cost in A1,
In B1 put:
=IF(A1<20,A1*2.1,IF(A1<50,A1*1.55,IF(A1>=50,A1*1.4,"")))

HTH
Michael
 
Got a bit carried away with my IF's
this is neater.
=IF(A1<20,A1*2.1,IF(A1<50,A1*1.55,A1*1.4))
Michael
 

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

Back
Top