Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2014-02-11 : 13:17:55
|
In an ssrs 2008 report, I want to add a parameter called Processed and have default values set so theuser does not have to select the parameters. The problem is the default parameters are not preselectedwhen the report is executed.The following is the query for the dataset that is used for the parameter called Processed. Thisis used under available values.select DISTINCT IsNull(Processed,'') as Processed,CASE IsNull(Processed,'') WHEN 0 then 'Non Processed' WHEN 1 then 'Processed' END AS labelFROM [Items]where Processed in (0,1)order by labelThe default values are set to 0 and 1. I also have the Allow Multiple values checkbox for the parameter checked(set).The column called Processed as defined as 'bit'.Thus can you tell me what you think could be wrong? Do I need to specify the bit values assomething else? If so, how should I refer to the values for bit? |
|
hbadministrator
Posting Yak Master
120 Posts |
Posted - 2014-02-20 : 15:12:30
|
is this select statment/case created first in a view? I find it much easier taking the tables I want do all my calculations in the views then import the data into ssrs. |
|
|
|
|
|