Hello
Is it possible to have report paramaters set up like this...
Report Parameter = @TERRITORYTYPE
If the user selects "Coastal", SQL query would be
If the user selects "Beach", SQL query would be
so on the data tab, it would be something like
...and base the results off which landcode was picked?
Is it possible to use the IN syntax?
Thanks in advance
Dave
Is it possible to have report paramaters set up like this...
Report Parameter = @TERRITORYTYPE
If the user selects "Coastal", SQL query would be
Code:
where territory in (1,2,3)
If the user selects "Beach", SQL query would be
Code:
where territory in (4,5,6)
so on the data tab, it would be something like
Code:
Select * from table where landcode in @TERRITORYTYPE
...and base the results off which landcode was picked?
Is it possible to use the IN syntax?
Thanks in advance
Dave