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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Business Days calculation

Status
Not open for further replies.

ddrake

Technical User
Mar 19, 2003
92
Also have one other issue which is driving me buggy [laughtears]:

Again, on CR9, SQL2K, Win2K server

Using Remedy, and trying to pull all cases (and total them) for a month, but only those that are on business days and average that number out (by only the number of business days). I've got a field in there that I've tried to use, called Business Day? and it's a Yes/No field. I can pull totals out no problem, but how do I come up with the number of days to divide into the total for the average?

Thanks!!
 
Simply SUM the following Formula:
--------------------------------------
IF {Business_Day} THEN 1 ELSE 0
--------------------------------------

Cheers,
- Ido CUT, Visual CUT, and DataLink Viewer:
view, e-mail, export, burst, distribute, and schedule Crystal Reports.
 
You can also create a Running Total field which does a count and in the evaluate use a formula use:
{table.Business day} = "yes".

-k
 
Trying to format it as a cross-tab report, if possible, to match all the other reports we're producing for this client.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top