Viewing 15 posts - 181 through 195 (of 219 total)
Are you sure you have all the Service Packs installed on the new server so it matches what you had installed on your old server?
January 11, 2006 at 3:54 am
You can create a parameter, such as Expand All, and then check this value as to whether the toggle items should be expanded or collapsed when the report generates.
I use...
December 20, 2005 at 5:43 am
Use something like...
=Sum(iif(CustomerAmt<0, 0, CustomerAmt))
December 20, 2005 at 5:31 am
So you have a dev and prod server both for RS and the SQL Database, correct? If you have access to both, then the issue is not with authentication with...
December 9, 2005 at 4:53 am
Have you tried setting the authentication on the datasource for the report to Windows Authentication? Be aware though, users will not be able to create subscriptions for these reports then.
December 8, 2005 at 5:40 am
Are you trying to join the data from the two datasets?
December 8, 2005 at 5:35 am
You need the calculated value to appear in the report somewhere, but not in the footer. RS will not allow data to be dropped here. Set the hidden value to...
December 7, 2005 at 3:52 am
In your data source, create a column which will specify the sort order (1,2,3. etc). Add this column to the report above the row or column you actually wish to...
December 7, 2005 at 3:48 am
Easiest approach is to use RS 2005. It's a feature in the new release. Is this possible for you?
December 2, 2005 at 5:36 am
I've run into the same issue and have not yet figured out why this does not work correctly. What we've done is to create a custom function within the report...
November 30, 2005 at 4:47 am
Is the embedded code within the report or in a dll on the report server? If it's the latter, you need to set permissions to access the dll.
November 30, 2005 at 4:41 am
Are you trying to concatenate fields in your dataset to text in the textbox? If so, the textbox value should look something like ="My text here " + Fields!MyField1.Value +...
October 27, 2005 at 5:37 am
Do as google search on SQL Views. They are easy to create...
create view as
select a,b from table
October 7, 2005 at 4:23 am
Depends on how the reports ties together. If they are really detail reports supporting summary reports you could use a sub report.
And Yes, data regions can be nested within each...
October 7, 2005 at 4:18 am
You can create a parameter for the report and then tie that to a filter on the report's data region.
October 5, 2005 at 5:58 am
Viewing 15 posts - 181 through 195 (of 219 total)