View Single Post
  #4   Report Post  
Sandy Mann
 
Posts: n/a
Default

Dan,

With your data (weights?) in E6 try

=IF(ISNUMBER(E6),SUM((E6={250,500,1000})*3)+(E6<5 00)+6,"")

to give the appropriate 7, 10, 12 or 15

If it is to be part of the shipping charge calculation then use:

=IF(ISNUMBER(E6),SUM((E6={250,500,1000})*3)+(E6<5 00)+6,0)* <Your charge

HTH

Sandy
--
to e-mail direct replace @mailinator.com with @tiscali.co.uk


"Dan Wilson" wrote in message
...
Good day. I am using Excel 2002. I have a need to
calculate shipping charges based on four parameters. The
table is as follows;

000.00 - 249.99 = 7.00
250.00 - 499.99 = 10.00
500.00 - 999.99 = 12.00
1000.00 and up = 15.00

There will be one cell that will hold the total product
cost. If necessary, a separate worksheet can be generated
to hold a table for the four parameters.

I have tried several combinations and don't seem to be
getting the right one. Please advise.

Thanks, Danno...