Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

formula for counting different days 1

Status
Not open for further replies.

draacor

IS-IT--Management
Jul 17, 2007
69
US
what is the formula for counting the number of days during a specific date range. For example i want to count how many mondays there were during the date range so that i can take that number and use it to average out the number of calls we get on mondays.
 
end date - start date

Ex:
date("2001-01-01")
-
date("2000-02-01")

_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
scratch that .....

_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
didnt read it right the first time .. my apologies ... this should work

local numbervar a;
local numbervar b:= enddate-startdate;
local numbervar c;

for c := 0 to b do
(
if dayofweek(startdate+c) = 2 then // replace as needed (2 is monday, 3 is Tuesday etc...)
a := a +1
);
a


_____________________________________
Crystal Reports XI Developer Version
Intersystems Cache 5.X ODBC connection

 
awesome it works, thanks for your help. I really appreciate it! :)
 
From Ken Hamady's formula examples:

datediff("ww",{startdate}-1,{enddate},crMonday)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top