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!

Suppressing Problems. 1

Status
Not open for further replies.

Sparks78

Technical User
Feb 25, 2005
4
EU
Can you help?

BACKGROUND
I'm trying to display a list of open cases per a person in per a queue so I have the following grouping.

Queue. => Person. => Case I.d

I only want open cases to show. Within each grouping I have information about group, e.g. In the queue I have details of which queue. For Person I have a string detailing persons name.

PROBLEM
When a person doesn't have any cases open I cannot seem to suppress their name. If I add a formula to suppress when a number of cases are not certain status' everyone's name is suppressed, this is because everyone within the Db has got closed/cancelled jobs at one time. Cases can have a number of status' and still be open, cancelled and closed are the only status' I don't want.

Solution??
 
Are you supressing or are you excluding the records from the report entirely with a selection formula?

You should be trying the latter, IMO.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
 
I am suppressing the data. How would you go about excluding data in a formula?
 
Try Case I.d <> cancelled and Case I.d <> closed

If the rest of the select logic is complex, it would be worth writing this as a Formula field and then just testing for the formula field. If you don't start with an 'If' it will be a Boolian, returnin true or false. You can test not @Unwanted


[yinyang] Madawc Williams (East Anglia, UK) [yinyang]
 
You go to report->edit selection formula->record, or report->edit selection formula->group. Then write your formula to exclude the records from the report.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
 
I am already doing the suggestion by Madawc, but thanks none the less.

I have had a brief look at the, report->edit selection formula->record, or report->edit selection formula->group this seems like the place to start.

I'll have ago tomorrow and will report back, thanks for the info.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top