Viewing 15 posts - 151 through 165 (of 219 total)
Not sure how you're hiding the parameter list, but in the RS2000, if you remove text in the Prompt User text box, the parameter is hidden from the user. In RS2005,...
August 3, 2006 at 1:20 pm
For free form report layouts you can use a list control.
August 3, 2006 at 1:14 pm
Do these users exist in the database and do they have permissions on the database?
August 3, 2006 at 1:11 pm
Reporting Services only recognizes VB.NET expressions within the report designer. TSQL commands are valid only within the query.
August 3, 2006 at 1:03 pm
What type of data region are you using in the report and do you have the data in the details section and not a group header/footer.
August 3, 2006 at 5:33 am
An iff statement will not work when checking for a zero value before division. .NET evaluates the true/false portion of the statement first and as such, will immediately throw an...
August 1, 2006 at 5:34 am
Yes, this is possible. SSRS 2005 is a separate installation from SQL Server. I've just gone through an upgrade to our production server for the same thing; database is 2000,...
July 14, 2006 at 5:38 am
No, headers and footers do not appear for a subreport; the headers and the footers for the main report are used. Also be aware that if you have a subreport...
July 12, 2006 at 5:18 am
What authentication are you using for the data source used by report, and has the account been granted the proper permissions in the database?
June 30, 2006 at 5:35 am
You'll need to connecct into the RS Web Service. Anything you can do through the Report Manager can be done through the web service.
June 30, 2006 at 5:34 am
For exexuting reports, you can use a SQL Server Account. But when you say the "app," are you refrerring to Report Manager? If so, by defauly only NT authentication is...
June 29, 2006 at 5:42 am
As an alternative, could you return the summed amount in your SQL and then use this in the report? I've used this approach quite a bit to get around this. ...
June 14, 2006 at 5:58 am
Create a database table with all possible dates you're looking for, and then from here, left join to your DisbursementsLines table on the date.
June 13, 2006 at 5:34 am
Can you sum all fields in the report that the user can pick from the parameter and then use the IsHidden property to hide what they have not chosen?
June 7, 2006 at 5:45 am
@var in (@parmlist) will not work as it is sending the parameter as a single delimited string, such as 'value1,value2,value3', and not as 'value1','value2','value3'.
June 7, 2006 at 5:42 am
Viewing 15 posts - 151 through 165 (of 219 total)