infinitizon
MIS
Hi all,
I have a little challenge. I have a report that I declared a parameter called Department that has default values like this:
All Departments
Project
Field Service
Workshop
Warranty
Marine
Contract
Manufacturing
I have also enabled the "Allow Multiple Values" check box. In my select expert, I have:
The problem is that when I test this (with CR10 or on web), and I select multiple values, the thing does not show the values for the multiple values. It only works when I select a single department.
What should I do?
I have a little challenge. I have a report that I declared a parameter called Department that has default values like this:
All Departments
Project
Field Service
Workshop
Warranty
Marine
Contract
Manufacturing
I have also enabled the "Allow Multiple Values" check box. In my select expert, I have:
Code:
{command.Job Posting Group} in
switch(
{?Department} = "All Departments",["","JOB - EXT", "JOB-AFMEXP", "JOB-LUB/S", "JOB-NBCMTU","JOB-ABB-AS","JOB-CANPJB",
"JOB-INSTAL","JOB-CUMNS", "JOB-W/SHOP", "JOB-WS/GEN","JOB-WTY","JOB-MAR","JOB-S/AGR", "RENTAL"],
{?Department} = "Project",["JOB-INSTAL"],
{?Department} = "Field Service", ["JOB - EXT", "JOB-AFMEXP", "JOB-LUB/S", "JOB-NBCMTU","JOB-ABB-AS"],
{?Department} = "Workshop", ["JOB-CUMNS", "JOB-W/SHOP", "JOB-WS/GEN"],
{?Department} = "Warranty",["JOB-WTY"],
{?Department} = "Marine",["JOB-MAR"],
{?Department} = "Contract",["JOB-S/AGR"],
{?Department} = "Manufacturing",["JOB-CANPJB"]
)
What should I do?