Hi there,<br />
<br />
I need to build a report where an initial parameter drives the values of several other parameters. I found the following demo useful as a starting point:<br />
<a class='bbc_url' href='
http://download.eclipse.org/birt/downloads/examples/reports/2.1/cascade/cascade.html'>http://download.eclipse.org/birt/downloads/examples/reports/2.1/cascade/cascade.html</a><br />
<br />
Let's say we have a department dropdown list, and a role dropdown which shows the roles associated with this department.<br />
<br />
The query to get the departments is:<br />
select C, I, NAME FROM Departments<br />
<br />
The query to get the roles for the selected department would then be:<br />
select C, I, NAME FROM Roles where C_DEPT = ? AND I_DEPT = ?<br />
<br />
However, when I create a cascading parameter group, I can only select one column as the value from the department dropdown.<br />
<br />
Is there any way I could get round this problem?<br />
<br />
Many thanks,<br />
Cedric