Viewing 15 posts - 16 through 30 (of 37 total)
This is what i was suggesting, i do this with all my parameters that i use in SSRS report as it allows me ignore criteria/parameters if i want to
Your...
December 2, 2008 at 6:29 am
You need to code in your Null value to your Main Sql like this
select * from tblData
where((? is null) or (parameter=?))
Then if you pass in a Null value to...
December 1, 2008 at 5:52 am
I have figured out how to do it using a work around.
it seems it must evaluate the expression from right to left
if i include a second Parameter called Month_NAME2 and...
September 2, 2008 at 5:39 am
=IIF(cint(Parameters!THE_MONTH.Value) = 100, monthname(1) , monthname(Parameters!THE_MONTH.Value))
This also returns #error when Parameters!THE_MONTH.Value = 100, however if Parameters!THE_MONTH.Value is for example 10 'October' is returned
This does not make any sense
September 2, 2008 at 5:21 am
Maybe i need to clarify the problem i have.
i have a report which is essentially a bulk print of Invoices.
The report contains a List which has Invoice Details on it...
July 29, 2008 at 7:32 am
if you use the Charting tool within BIDS and select a Simple Line Version The Line will start at April
June 25, 2008 at 7:53 am
For your first point Yes for Data Driven subscriptions you can control what gets placed into the Subject Line. This can be from a parameter or from the data...
June 25, 2008 at 5:39 am
I don't know if this answers your question but
In the situations where i know that the result will always be 100% then i have cheated by putting in theText...
March 6, 2008 at 8:26 am
I am not sure what you are trying to do here based on your SP.
If you are trying have Blank Parameter to be passed into your stored...
February 15, 2008 at 8:43 am
You can add additional fields (calculated) to a dataset on your report (similar to what you could do in Crystal). You could use this new calculated field to display your...
February 15, 2008 at 5:29 am
i do not have a solution but i experience a similar problems on some reports that have a stored procedure at the back of them.
When i jump to a drilldown...
February 15, 2008 at 5:25 am
There is a tool called RSScripter(google it) which allows you script reports (including folders) from one report server for deployement on another
You will need to download it and read the...
February 15, 2008 at 5:23 am
There is an app i downloaded from the web called RSScripter.exe
This allows you to script all your reports, models, datasources etc from a report server and deploy them to another...
January 21, 2008 at 9:25 am
That is to be expected in the Live environment vs Dev because
Generally a Live Server would be more powerful
a Dev Server would have a lot more database (for testing...
November 2, 2007 at 6:36 am
The live database is the one you need to tune against as you want to index on this. You should always match your other environments to this.
You should run your...
November 2, 2007 at 5:27 am
Viewing 15 posts - 16 through 30 (of 37 total)