NETWORKDAYS with NOW() or TODAY()

  • Thread starter Thread starter rerhart
  • Start date Start date
R

rerhart

I currently have two columns of data:

Ordered Date (C)
Complete Date (D)

Both are columns of dates. In some cases the Complete date is empt
and when it is empty I would like my existing formula to also calculat
the number of weekdays between the Order Date and Today's Date. Belo
is my existing formula that works fine for calculating weekdays betwee
the two dates, but I am not sure how to add the functionality o
calculating weekdays between Order Date and Today's date if th
Complete Date is blank.

=IF(OR(ISBLANK(C2),ISBLANK(D2)),0,NETWORKDAYS(C2,D2))

Thanks
 
Hi
try:
=IF(ISBLANK(C2),0,IF(ISBLANK(D2),NETWORKDAYS(C2,TODAY()),NETWORKDAYS(C2
,D2)))
 

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

Networkdays? 1
Days in a specific month 2
Calculate business days between 2 dates 4
NETWORKDAYS Formula 1
Weekdays between two dates in Excel? 1
NETWORKDAYS 1
NETWORKDAYS formula 5
NETWORKDAYS 3

Back
Top