Viewing 15 posts - 46 through 60 (of 100 total)
Sorry for the delay getting back to you. I'm still not sure if this will be helpful or not, it's kind of hacky, but based on the info here...
August 10, 2011 at 9:51 am
My initial inclination is that will not work, but feel free to try and let us know. I suspect you are passing additional values to the subreport in order...
August 10, 2011 at 9:09 am
I've experienced something similar as well occassionally when connecting to localhost directly on the server.
When you launch IE try Run As Administrator and see if that helps?
August 10, 2011 at 9:01 am
The two sources in the data flow task should be started simultaneously. If you want them to start one after another do this in the control flow. Add...
August 10, 2011 at 8:55 am
After you add the Page Header and Page Footer you can pass the customer name to them using the ReportItems collection. Find the name of the Textbox in your...
August 10, 2011 at 8:31 am
I'm not sure if the data you are showing is already grouped or if you need the query to do the grouping for you. Here are two options that...
August 5, 2011 at 7:04 am
=FORMAT(TODAY(),"MMMM dd, yyyy")
August 4, 2011 at 6:56 am
Two things to look at for starters:
1. Make sure when you start IE you 'run as' Administrator, otherwise you may not get sufficient privledges to access report server.
2. ...
August 4, 2011 at 5:28 am
I have never seen anything like this from SSRS, it is typically something I would expect from a custom .Net application, but maybe somebody else has done it or knows...
August 3, 2011 at 8:37 am
Can you clarify something? Your post says your text file has three columns, your ole db source (query) has three columns and there is only one row. Are...
August 3, 2011 at 5:29 am
I think you definitely lost me now. If the comment works properly in the group on the left side of the report, it should work the same way in...
August 2, 2011 at 9:50 am
In your second group you should be able to use the following expressions (field names may not be accurate):
Balance:
=SUM(Fields!Balance.Value)
MiBalance:
=SUM(iif(Fields!Code.Value = 1, Fields!Balance.Value, 0))
MaBalance:
=SUM(iif(Fields!Code.Value != 1, Fields!Balance.Value, 0))
Basically for the Balance...
August 2, 2011 at 9:12 am
If I understand correctly, I don't see any reason why this wouldn't work. You should be able to add the comment field to the report, if it is in...
August 2, 2011 at 8:58 am
Using Switch
=SWITCH(
Fields!ID.Value = 1, "yes",
Fields!ID.Value = 2, "yes",
Fields!ID.Value = 3, "yes",
1=1, "no")
Using IIF
=IIF(Fields!ID.Value = 1
OR Fields!ID.Value = 2
OR...
August 1, 2011 at 9:18 am
In SSRS 2008 there is a KeepTogether property. Make sure your Properties window is visible. In your report table select the Group row. In the Properties window...
July 26, 2011 at 6:23 am
Viewing 15 posts - 46 through 60 (of 100 total)