NETWORKDAYS - 30 calculation HELP!

  • Thread starter Thread starter ajpowers
  • Start date Start date
A

ajpowers

How do I use the "networkdays" formula to determine when a produc
should ship by?

I have a PO issue date and a shipment due date, I need to calculate
"Should ship by date". I know that it takes 30 days on the water, an
I can't include weekends. Help
 
How do I use the "networkdays" formula to determine when a product
should ship by?

I have a PO issue date and a shipment due date, I need to calculate a
"Should ship by date". I know that it takes 30 days on the water, and
I can't include weekends. Help!

I'm curious as to why weekends are excluded when shipping by water. I thought
ships traveled 24/7.

In any event, you want to use the WORKDAY formula, if you need to exclude
weekends.

=WORKDAY(shipment_due_date, -30) or
=workday(shipment_due_date,-shipping_days)

On the other hand, if you merely want to exclude the WEEKEND as a possible
"should ship by date", then use this variation:

=workday(shipment_due_date-shipping_days+1,-1) or
=workday(shipment_due_date-30+1,-1)


--ron
 

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

Calculations seem to be off... 3
NETWORKDAYS 3
IF statement and Network days 2
NETWORKDAYS formula 5
Calculate business days between 2 dates 4
calculate number of days 5
Dates Workdays 2
Reverse Networkdays?? 2

Back
Top