jschill2628
Programmer
I have a severity prompt (parameter) in my report. The prompt is a static prompt that simply list the values of severity none, minor, major, etc. In my selection criteria I have the following…….
and (
if "None" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "05" or
if "Minor" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "10" or
if "Moderate" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "15" or
if "Major" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "20" or
if "Death" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "25"
)
Which is great, except for when I only want to choose severity’s like Major and Death, the report shows nothing, when there was data there before.
What am I doing wrong?
Thanks in advance.
and (
if "None" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "05" or
if "Minor" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "10" or
if "Moderate" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "15" or
if "Major" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "20" or
if "Death" in {?Severity} then {IRSCLAIM.COVERAGE}= "FALL" and {IRSCLAIM.SPECIAL20} = "25"
)
Which is great, except for when I only want to choose severity’s like Major and Death, the report shows nothing, when there was data there before.
What am I doing wrong?
Thanks in advance.