Viewing 13 posts - 76 through 88 (of 88 total)
I see why you're getting all your records back without limits.
Let's look at some pseudocode for your script:
Set @where variable = "WHERE "
if param1 not empty then
filter...
February 8, 2008 at 11:30 am
Yes.
The most significant difference between using Excel and a typical SQL data source is the data source type selection.
Before you start, make sure you have Excel Files set up as...
February 8, 2008 at 6:57 am
Why are you casting regdate as an int? You will be better off converting whatever is in regdate into some date format. Try CONVERT(DATETIME,regdate,101) AS REGDATE. That will...
February 4, 2008 at 12:13 pm
I use the following query for a dataset gathering data from the Report Server database. It gets used in a report set to distribute by subscription each morning after...
January 30, 2008 at 8:16 am
This is by no means an optimal solution but it's the best I think there is right now.
Once your customers have generated the report to the screen and have clicked...
January 21, 2008 at 1:53 pm
I don't believe there is (out of the box). if anybody does know a way to do it, that would be great.
January 17, 2008 at 6:26 am
Another option (especially if you've got a report with many expressions that could result in divide by zero situations is to use a Custom Code function.
In the Code...
January 14, 2008 at 9:45 am
Brandi,
I'll be very surprised if it's this simple but I'll ask anyway. Can't you use just the detail dataset and then group on product and month to let SSRS...
January 11, 2008 at 8:11 am
Here are some other links that may be helpful.
Expression examples: http://msdn2.microsoft.com/en-us/library/ms157328.aspx
Function Definitions: http://msdn2.microsoft.com/en-us/library/c157t28f(vs.71).aspx
Best Practices for reporting:
http://www.ssw.com.au/ssw/Standards/Rules/RulesToBetterSQLReportingServices.aspx
January 9, 2008 at 9:58 am
Out of the box, this is not supported in SSRS. That being said, some in our company have had some limited success with creating macros and or .net applications...
December 6, 2007 at 9:53 am
I wonder if it just doesn't like * as a delimiter, trying to multiply something. Can you change it to something more traditional like a comma?
December 3, 2007 at 10:24 am
That syntax looks correct. What result are you getting?
November 29, 2007 at 2:16 pm
Tammi Harris (11/28/2007)
=IIf(First(Fields!PositionType.Value, "devCECS")="3",false,true)
I want to show or hide depending on this text within the specificed field. The field may contain other values...
November 28, 2007 at 1:15 pm
Viewing 13 posts - 76 through 88 (of 88 total)