Viewing 15 posts - 661 through 675 (of 2,278 total)
Yes, I have this in my code snippets file. I use it often.
Glad to help.
February 24, 2012 at 11:20 am
In the parameter settings for the query, use an expression like this:
=JOIN(Paramters!ParameterName.Value,",")
February 24, 2012 at 7:10 am
This is what I usually do:
'value1,value2,value3,value4'
Depending on where exactly you are running it from you may need double quotes instead of the singles I show above.
February 23, 2012 at 11:31 am
Joy Smith San (2/23/2012)
This is my first report in SSRS. I have worked on dotnet development and also with crystal reports, long ago.
Hence SSRS environment looks somewhat familar to me,...
February 23, 2012 at 7:11 am
What you are talking about is cascading parameters. Generally the way I do this is to start with the dataset query that will generate the actual report data using...
February 23, 2012 at 7:04 am
You could limit the data to a maximum number of characters with something like
=LEFT(Fields!FieldName.Value,30)
February 23, 2012 at 6:57 am
D.Oc (2/22/2012)
candy floss
This sounds like a paradox, or at least the newest pop star to hit the scene.
February 23, 2012 at 6:55 am
crookj (2/22/2012)
Brandie Tarvin (2/22/2012)
inconceivableMind-boggling
Vizzini
February 22, 2012 at 8:33 am
If you need all rows for some reason (you have a chart or something else that uses all rows) then a filter as Martin suggests is probably the way to...
February 21, 2012 at 11:01 am
See if this helps:
REPLACE(REPLACE(REPLACE(LTRIM(RTRIM(CAST([Col2] AS nvarchar(2000)))),' ',' '+CHAR(7)),CHAR(7)+' ',''),CHAR(7),'') "Title"
First this trims all leading and trailing spaces, and then replaces all instances of more than one contiguous space...
February 21, 2012 at 8:49 am
L' Eomot Inversé (2/20/2012)
Revenant (2/20/2012)
Dean MartinFrank Sinatra
Rat pack
February 20, 2012 at 12:43 pm
Try something like this:
Max(Fields.Month.Value,"Dataset1")
February 20, 2012 at 10:48 am
You can scope values in an expression to the dataset. For example, using your names above you can do something like this: (Fields!TotalSales.Value,"Dataset1") to indicate that you want the...
February 20, 2012 at 7:35 am
Viewing 15 posts - 661 through 675 (of 2,278 total)