isobretatel
isobretatel

Reputation: 3930

Crystal Reports: multiple parameter values in record selection filter

I created a report with:

Parameter: buildingIds: String

Allow Multiple Values: True

Record Filter {WO.BL_ID} in [{?buildingIds}]

The designer gives me error: "An array cannot be an element of another array."

How do I pass multiple values for a parameter, that is used in "in list" filter?

Upvotes: 1

Views: 4162

Answers (1)

craig
craig

Reputation: 26262

You don't need the []:

 {WO.BL_ID} IN {?buildingIds}

Upvotes: 3

Related Questions