Hi
I’m using birt for creating parametric report.
I want to define a parameter which can take multiple values. So I’ve defined a parameter as below and then added it in “Parameters” section in the “edit data set” panel.

And this is my query for the data set:
SELECT `time` , `name_client` , name
FROM `mornings`
INNER JOIN `users` ON mornings.user_id = users.id where name=?
On the other hand, I have created a LOV and an analytical Driver which takes its data from the LOV and it’s “select modality” Is “select form list”.
Then I have added this Driver in “Document Analytical Driver” panel and set Multivalue: “True”. But when I run the report and Chose 2 value (or more ) Simultaneously, it doesn’t show any result.
But if I don’t have use Multivalue (When I define the “parameter” and add driver to Document in “Document analytical driver”) it works fine. Where is my wrong that I cannot select multi value simultaneously?