on 2023 Nov 14 1:19 PM
I used three Commands in main report without linking, passed the parameter with multivalued.
In detail section Im using below Concatenation formula
WhilePrintingRecords;
Shared StringVar ConCat;
If ConCat = "" then ConCat := {Command.ext_name}
else if not({Command.ext_name} in ConCat) then ConCat := ConCat +'<br>'+ {Command.ext_name}
Now I need to Split the parameters and break this Statement for each parameter
Request clarification before answering.
Having multiple commands in a report is NOT recommended. See Best Practices When Using Commands with Crystal for information about why. Also, parameters for commands should be created in the Command Editor and, if they're going to be the same parameters between commands, they need to be created with the same name for each command.
The best practices link above will also get you information about how to create and use parameters in commands. For multi-select parameters, you'll use syntax like:
field in {?MyMultiParameter}
in the where clause of your command to filter the data.
-Dell
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
59 | |
8 | |
7 | |
6 | |
5 | |
5 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.