Link to home
Start Free TrialLog in
Avatar of alcsoft
alcsoft

asked on

Default text value for parameters in SSRS 2008

Hi,

This looks like a dump question, but I have spent time trying to figure that out.

I want the parameter to show (ALL), as a default value in the unit parameter!

I tryed ="ALL". but for some reason it didn't work!
pic1.JPG
pic2.JPG
Avatar of sammySeltzer
sammySeltzer
Flag of United States of America image

Click on Fx and enter this as experssion to see what happens.

[Regions].[RegionsDesc].[All]

change to your own needs
Avatar of alcsoft
alcsoft

ASKER

This one will pull the value of the fiels [ALL], I want a static string "ALL"
if you give default value as 'ALL', this will show only when you do not pass any values to the report.
while specifying the values , if you key in [ALL], then also it won't work

what you have to do is, use a query to provide list of values for the parameter filter as shown below

select 'ALL'
union all
select StateName from State

use this to populate the filter and then set ALL as default value
Avatar of alcsoft

ASKER

I tried 'ALL' as a default value in the box that you see in the pic2 and it did't work!
This box is free text field, I might go with your code if it is drop down menue!

So basically I want a text box have ALL as a default value and if the user want to change it, he will delete (ALL), and write down something like (mile)!

I know in MS2005 I can set such default value using ="ALL"

But here for some reason it won't work!

Avatar of ValentinoV
I support the suggestion made by suresh, but I would add an ID to the query.  I assume that the units are coming from a database table, right?  And in a normalized structure, this table would contain a numeric identifier.  This ID will then be your parameter Value, while the Name field is the parameter Label.

See code for a possible source query for your parameter (adapt to your table/field names).

Your default should then be set to -1.
select UnitID, UnitName
from UnitTable
union all
select -1, '<ALL>'

Open in new window

Avatar of alcsoft

ASKER

Please I am using a normal text Box, it is not a drop down menue!

I want to have one value!! which is "ALL"
ASKER CERTIFIED SOLUTION
Avatar of ValentinoV
ValentinoV
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of alcsoft

ASKER

Yes this is what I want.. I knew it is not hard job.... it is just related to the data syntax!
Microsoft keep changing the syntax!!!
Thanks ValemtionV