I have my 2 datasets and my parameter set up to display building to select from. My issue is I get multiple values in the Select Value Prompt. It will pull the correct data I just want to clean up the Select Value Prompt.
Example: of prompt list
Building 1
Building 1
Building 1
Building 2
Building 2
Dataset 1:
Select Building, First, Last
From Table
Dataset 2:
SELECT Building, First, Last
From Table
WHERE (Table.Building = @.Building)
Hi Ray,
You can use the DISTINCT clause:
Select DISTINCT Building, First, Last
From Table
Cheers,
Rob
|||That doesn't work|||What had to do is make a 3rd dataset in the report, w/ just the select distinct statement in it and then, change the available values dataset to the one that is just the select distinct.sql