#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Freight formula

Hell all, please help.
I am trying to create a formula to calculate freight charges based on
the dollar amount of the order.
Example
If the order is 0 to $15.00 freight = $7.00 if order is $15.01 to
$25.00 = $8.00, if $25.01 to $35.00 = $9.00, if $35.01 to $45.00 =
$10.00, if $45.01 and over it is free.
below is how i have started the formula but it doesn't seem to work.
=IF(N53<15.01,R56,IF(N53<15.01:25,R57,IF(N53<25. 01:35,R58)))

Thank you in advance, Joe

  #2   Report Post  
Posted to microsoft.public.excel.misc
jim jim is offline
external usenet poster
 
Posts: 11
Default Freight formula

It looks like you might be over thinking it with the not-equals (<).
Try this:

=IF(A2<15.01,7,IF(A2<25.01,8,IF(A2<35.01,9,IF(A2<4 5.01,10,0))))

This checks to see if it's less than the bottom of the second tier. If
so, it's the lowest. If not, it checks against the next and so on
until it's out of options. At that point it's reached it's highest
mark, no charge for me!

I hard coded the freight charges, but you could just as easily
reference another cell.


Jim




tanjal wrote:
Hell all, please help.
I am trying to create a formula to calculate freight charges based on
the dollar amount of the order.
Example
If the order is 0 to $15.00 freight = $7.00 if order is $15.01 to
$25.00 = $8.00, if $25.01 to $35.00 = $9.00, if $35.01 to $45.00 =
$10.00, if $45.01 and over it is free.
below is how i have started the formula but it doesn't seem to work.
=IF(N53<15.01,R56,IF(N53<15.01:25,R57,IF(N53<25. 01:35,R58)))

Thank you in advance, Joe


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reusing formula Tony29 Excel Discussion (Misc queries) 7 September 7th 06 03:34 AM
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM


All times are GMT +1. The time now is 04:25 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"