days360 defines a specific algorithm for normalizing months, a
defined on the follow page
http://office.microsoft.com/en-ca/as...1609841033.asp
so first make sure you're using the right algorithm. if you're base
in Europe, you might need to set the third parameter of DAYS360() t
TRUE to use the European method
NETWORKDAYS() counts working days so it's a different animal, thoug
the idea of excluded dates is what's needed here.
i would use the algorithm to count days whenever possible. fo
instance, DAYS360("12/1/2005", "1/5/2006") = 34
not 35. (american style dates MM/DD/YYYY
i would substract from DAYS360(Launch, reporting) the number of WHOL
35 day periods, ie WHOLE periods * 35, then subtract DAYS360(X,Y) fo
X and Y between 12/1/AAAA and 1/5/BBBB, ie use the DAYS360 function
then finally divide by 7 to get week averages
(a recursive function could work nicely here...
-----------------------------------------------------------------------
ExcelJockey's profile:
http://www.exceljockeys.com/forums/p...viewprofile&u=
View this thread:
http://www.exceljockeys.com/forums/v...ic.php?t=30772