Hello All,
I am using CR 8.5. I have the following setup:
I want the report to display cases that have both the 'Letter' and 'Complaint Form' on any one case number. If both do not exist with each other then I want the report to suppress the case.
Here is my formula so far:
FormulaName = "ActionDesc"
if {Action.Table} = ["Letter","Complaint Form"] then
1
else
0
Then, I placed the formula in the group selection formula place as:
sum ({@ActionDesc},{CASE_PARTY_ACTION_PHYT.JEboA}) > 0
Yet, I get cases that have either on of the actions or both in any one case.
I want CNumber 1234 and 7890 to display only.
Your help will be greatly appreciated.
I am using CR 8.5. I have the following setup:
Code:
CNumber: 1234
Action: Letter
Action: Complaint Form
CNumber: 4567
Action: Letter
CNumber: 7890
Action: Letter
Action: Complaint Form
I want the report to display cases that have both the 'Letter' and 'Complaint Form' on any one case number. If both do not exist with each other then I want the report to suppress the case.
Here is my formula so far:
FormulaName = "ActionDesc"
if {Action.Table} = ["Letter","Complaint Form"] then
1
else
0
Then, I placed the formula in the group selection formula place as:
sum ({@ActionDesc},{CASE_PARTY_ACTION_PHYT.JEboA}) > 0
Yet, I get cases that have either on of the actions or both in any one case.
I want CNumber 1234 and 7890 to display only.
Your help will be greatly appreciated.