I have a problem with my grouping and needing to suppress certain data. There are too many codes to enter into Select Expert but can be done.
Using CR 8.0 on Win98<-(don't ask)
I am trying to suppress certain data from my groupings.
I have two groups that I need specific data suppressed from out of a total of 7 groups. Here is the formula that I have (which isn't working):
I have tried this formula in the detail section and group section under format section in Suppress (No Drill Down).
// If the financial class is K or Q in the Responsible_Dept
// Billing Errors or Coding Issues, then suppress accounts
// with finacial class K or Q, otherwise
// show the K or Q accounts.
If {Do_Not_Use_-_Denial_Codes.responsible_dept} = ["Billing Errors", "Coding Issues"] and
{Patient_Information.fin_class} = ["K", "Q"] Then
Not ({Patient_Information.fin_class} in ["K", "Q"])
Else
({Patient_Information.fin_class} in ["K", "Q"]);
I only need to supress the K or Q if in those 2 dept's on the report.
Any help will be greatly appreciated!
Thanks in advance!
John
Using CR 8.0 on Win98<-(don't ask)
I am trying to suppress certain data from my groupings.
I have two groups that I need specific data suppressed from out of a total of 7 groups. Here is the formula that I have (which isn't working):
I have tried this formula in the detail section and group section under format section in Suppress (No Drill Down).
// If the financial class is K or Q in the Responsible_Dept
// Billing Errors or Coding Issues, then suppress accounts
// with finacial class K or Q, otherwise
// show the K or Q accounts.
If {Do_Not_Use_-_Denial_Codes.responsible_dept} = ["Billing Errors", "Coding Issues"] and
{Patient_Information.fin_class} = ["K", "Q"] Then
Not ({Patient_Information.fin_class} in ["K", "Q"])
Else
({Patient_Information.fin_class} in ["K", "Q"]);
I only need to supress the K or Q if in those 2 dept's on the report.
Any help will be greatly appreciated!
Thanks in advance!
John