Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default calculate shipping costs in excel 2007

I am trying desperately to create a formula in my spreadsheet that will
automatically calculate shipping cost for me based on weight. Here is my
scenario:
I have one column that calculates the weight per item.
I have the total weight entered into one cell (H42) on my sheet.
Based on the weight in cell H42, I need to determine three different factors:
a) If weight is less than 250 pounds, I need cell H42 multiplied by $1
b) If weight is BETWEEN 250 and 999 pounds, I need cell H42 multiplied by
total invoice order in cell AV42 (don't worry ... my columns are all 1 inch
wide and I merged some together)
c) If weight is greater than 1000 lbs, the shipping is a set price.

Any help will be greatly appreciated! I cannot figure this formula out by
using the IF function. I don't know how to set it the values 250<999. Excel
doesn't recognize what I am telling it to do! Please help!

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default calculate shipping costs in excel 2007

I'm assuming that you don't have an endefined (or free?) region between 999
and 1000?

Try =IF(H42<250,H42,IF(H42<=1000,H42*AV42,set_price))
--
David Biddulph

"JOVA" wrote in message
...
I am trying desperately to create a formula in my spreadsheet that will
automatically calculate shipping cost for me based on weight. Here is my
scenario:
I have one column that calculates the weight per item.
I have the total weight entered into one cell (H42) on my sheet.
Based on the weight in cell H42, I need to determine three different
factors:
a) If weight is less than 250 pounds, I need cell H42 multiplied by $1
b) If weight is BETWEEN 250 and 999 pounds, I need cell H42 multiplied by
total invoice order in cell AV42 (don't worry ... my columns are all 1
inch
wide and I merged some together)
c) If weight is greater than 1000 lbs, the shipping is a set price.

Any help will be greatly appreciated! I cannot figure this formula out by
using the IF function. I don't know how to set it the values 250<999.
Excel
doesn't recognize what I am telling it to do! Please help!

Thanks!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default calculate shipping costs in excel 2007

=if(h42<250,h42,if(h42<999,h42*av42,whatever your fixed price is))

"JOVA" wrote:

I am trying desperately to create a formula in my spreadsheet that will
automatically calculate shipping cost for me based on weight. Here is my
scenario:
I have one column that calculates the weight per item.
I have the total weight entered into one cell (H42) on my sheet.
Based on the weight in cell H42, I need to determine three different factors:
a) If weight is less than 250 pounds, I need cell H42 multiplied by $1
b) If weight is BETWEEN 250 and 999 pounds, I need cell H42 multiplied by
total invoice order in cell AV42 (don't worry ... my columns are all 1 inch
wide and I merged some together)
c) If weight is greater than 1000 lbs, the shipping is a set price.

Any help will be greatly appreciated! I cannot figure this formula out by
using the IF function. I don't know how to set it the values 250<999. Excel
doesn't recognize what I am telling it to do! Please help!

Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 269
Default calculate shipping costs in excel 2007

Nest 2 if functions

=IF(H42<250,H42*1,IF(H42999,1500,H42*AV42))

I used the 1500 as the set shipping price, change as needed.



--
If this helps, please remember to click yes.


"JOVA" wrote:

I am trying desperately to create a formula in my spreadsheet that will
automatically calculate shipping cost for me based on weight. Here is my
scenario:
I have one column that calculates the weight per item.
I have the total weight entered into one cell (H42) on my sheet.
Based on the weight in cell H42, I need to determine three different factors:
a) If weight is less than 250 pounds, I need cell H42 multiplied by $1
b) If weight is BETWEEN 250 and 999 pounds, I need cell H42 multiplied by
total invoice order in cell AV42 (don't worry ... my columns are all 1 inch
wide and I merged some together)
c) If weight is greater than 1000 lbs, the shipping is a set price.

Any help will be greatly appreciated! I cannot figure this formula out by
using the IF function. I don't know how to set it the values 250<999. Excel
doesn't recognize what I am telling it to do! Please help!

Thanks!

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
How do I create a formula that calculates shipping costs? Mark Toulson New Users to Excel 1 October 17th 06 08:33 AM
How do I create a formula that calculates shipping costs? Mark Toulson New Users to Excel 3 October 16th 06 10:40 PM
How to calculate shipping costs based on subtotal mywaters Excel Worksheet Functions 3 May 9th 06 03:31 PM
Calculating shipping costs LPJR New Users to Excel 3 November 30th 05 05:16 AM
shipping costs using if then impression Excel Worksheet Functions 2 May 7th 05 11:34 PM


All times are GMT +1. The time now is 03:35 PM.

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

About Us

"It's about Microsoft Excel"