cancel
Showing results for 
Search instead for 
Did you mean: 

Print Multiple Parameter Value in Crystal Report 2008

former_member549322
Participant
0 Kudos

Hello and Hi

i want to select multiple warehouse in a pramater , i select and report working but parameter print only first parameter value on report.how can print all selected values on report

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

I am assuming you select warehouses WH1,WH2,WH3,.......

You have to create a formula in Crystal

It should look like this

Join({?YourParamaterName},",")

Place the formula on your report.

The last Part of the formula is the "notation break" between every parameter returned. In this case a > , <

Return would be WH1,WH2,WH3,.......

Join({?YourParamaterName},"#") would return WH1#WH2#WH3#.......

Hope you get the idea

If this solution helps, please rate me.

Regards

Burger

Former Member
0 Kudos

Hi,

thank you for your answer, it helps when it is String like cardcode.

But it not work for Number, what should I put ?

Thanks in advance

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Malika

If the join command isnt working you may need to do a loop and address the array values one at a time, moving them into a text field.

Rob