Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Programming / March 2006

Tip: Looking for answers? Try searching our database.

Multi-Conditional IF Statements

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
stacy - 22 Mar 2006 20:40 GMT
Hello...

I have a dilemma that I may be making harder than it needs to be.  I
have a spreadsheet with 3 columns, contain 3 specific dates.  What I
need to do is to compare these columns, and calculate the NETWORKDAYS
between dates.  The problem is this:  If column C is blank, then I want
the NETWORKDAYS between columns A and B.  If column C is filled, I want
the NETWORKDAYS between columns A and C.  I can get either the first
sequence or the second sequence to work fine, but not both at the same
time.  My main issue I believe is when calculating the NETWORKDAYS...
If column A is larger than column B, no problem.  But if column B is
larger than column A, it returns a negative value, which is what I
want, but the calculation is off.  Below is the date I am using...

SLA Date    Production Date    Deliverable Date    Net-Work Days SLA Made by
03/10/06    03/03/06                           5
03/08/06    03/09/06                          -1
03/09/06    03/09/06                           0
03/15/06    03/09/06    03/22/06                FALSE

=IF(F6="",IF(E6<D6,NETWORKDAYS(E6,D6,$M$6:$M$14)-1,IF(E6>D6,NETWORKDAYS(E6,D6,$M$6:$M$14)+1,IF(E6=D6,NETWORKDAYS(E6,D6,$M$6:$M$14)-1))))

The problem is that the formula I use above works great, until column C
is populated, and then I get a FALSE return due to my IF(F6=""
statement (F6 is the deliverable date column in the example above).  Is
there an easier way to account for both this column being blank and/or
filled?

Thanks ahead of time for any help.
stacy - 22 Mar 2006 21:16 GMT
Okay... I think I have figured out my own question... I use the
following formula and it works just fine:

=IF(AND(F6="",E6<D6),NETWORKDAYS(E6,D6,M$6:M$14)-1,IF(AND(F6="",E6>D6),NETWORKDAYS(E6,D6,M$6:M$14)+1,IF(AND(F6="",E6=D6),"0",IF(F6<>"",NETWORKDAYS(F6,D6,M$6:M$14)+1,0))))

However, if anyone has something a little more direct or simple, I am
always open to learning new approaches!  Thanks for your time...
MarkTheNuke - 23 Mar 2006 02:05 GMT
You could use the IsBlank function
=IF(AND(ISBLANK(F6),E6<D6)....
I don't know if it will save you anything but you could try it.
Mark

> Okay... I think I have figured out my own question... I use the
> following formula and it works just fine:
[quoted text clipped - 3 lines]
> However, if anyone has something a little more direct or simple, I am
> always open to learning new approaches!  Thanks for your time...
daddylonglegs - 23 Mar 2006 02:49 GMT
You should be able to simplify so that NETWORKDAYS isn't repeated, try

=IF(E6=D6,0,NETWORKDAYS(IF(F6,F6,E6),D6,M$6:M$14)-SIGN(D6-IF(F6,F6,E6))
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.