Howdy - i'm on Crystal 10 off a Sybase database. I'm prompting the user for a multiple value parameter
?Checklist which can hold 1 to 5 different string values with the user selecting which ones to identify with an "X" on the report. I'm trying to create a formula that will cycle through the parameter selections and return corresponding verbage on the report per the following:
Parameter : Corresponding Verbage
FinStatments : "All financial statements."
MgmtLetter: "Management Letter."
ActionPlan : "Corrective Action Plan."
FedAwards: "Federal Awards."
Other : "Other description."
I tried setting up a Select Case structure and looping through the parameter using ubound(?Checklist) to determine the size and then create the list, but what was returned was "TRUE" instead of a listing of the Corresponding Verbage.
I need the report to show all 5 line items, but am showing a "X" next to the items selected in the parameter (i.e. user may only need ActionPlan and Other, so I want these two lines to show with an "X" before the description, but need to show all the other items without an "X".
Any help would be appreciated!!!
?Checklist which can hold 1 to 5 different string values with the user selecting which ones to identify with an "X" on the report. I'm trying to create a formula that will cycle through the parameter selections and return corresponding verbage on the report per the following:
Parameter : Corresponding Verbage
FinStatments : "All financial statements."
MgmtLetter: "Management Letter."
ActionPlan : "Corrective Action Plan."
FedAwards: "Federal Awards."
Other : "Other description."
I tried setting up a Select Case structure and looping through the parameter using ubound(?Checklist) to determine the size and then create the list, but what was returned was "TRUE" instead of a listing of the Corresponding Verbage.
I need the report to show all 5 line items, but am showing a "X" next to the items selected in the parameter (i.e. user may only need ActionPlan and Other, so I want these two lines to show with an "X" before the description, but need to show all the other items without an "X".
Any help would be appreciated!!!