Link to home
Start Free TrialLog in
Avatar of wshcraft70
wshcraft70Flag for United States of America

asked on

Crystal Reports 2011 (Subscript/array required)

I've got a parameter that allows for multiple selections.

A
B
C
D
E

If the user selects "A" from the group, I have a formula that prints "A" as the title of the report.

However, if the user selects A, B, C all at once, I'd like the formula to print all three on the report title.

Currently my formula is:

if {?GROUP} = "A" then "A" else
if {?GROUP} = "B" then "B" else  (and so on for each individual choice)

But here is where I get stuck..

If {?GROUP} = "A" and "B" and "C" then (what does my formula need to look like to print all?)
ASKER CERTIFIED SOLUTION
Avatar of peter57r
peter57r
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wshcraft70

ASKER

Perfect..  THANK YOU VERY much!!!  :D