Viewing 15 posts - 61 through 75 (of 290 total)
SSRS caches report data as a .DATA file in the solution folder.
Either run the report again and click the little "Refresh" icon - this should force SSRS to rerun the...
May 6, 2016 at 2:13 am
"update say the heading on say 30 reports at once; without going into each of them"
Unless the reports are already drawing the heading from something you can change, e.g. a...
May 5, 2016 at 8:33 am
Have you checked the LineWidth property on the axis?
May 5, 2016 at 7:06 am
That syntax will not work in SQL Server. To get the row numbers use the ROW_NUMBER() window function.
This then requires an order by which determines the...
April 27, 2016 at 2:43 am
You can include a condition within your aggregate expression which will then be evaluated for each row being aggregated.
E.g.
=Sum(Iif(Fields!AccountType.Value = "Cash and Short-Term Investments", 0, Fields!Balance.Value))
April 27, 2016 at 2:20 am
You need to set the DataElementOutput property on the chart to "None".
April 27, 2016 at 2:12 am
Right click your Detail row and Insert a row "Inside" the group.
April 26, 2016 at 5:30 am
Ah, well that certainly is SSRS generated MDX.
You are right that in this situation it the where clause appears superfluous and can be removed. However it does have a...
April 13, 2016 at 3:29 am
I'd have a hard time believing SSRS generated that.
April 12, 2016 at 6:04 am
You should be returning a string that tells SSRS where the target report is. Also, they will need to take the same parameters (if any) with the same names.
I.e....
April 11, 2016 at 4:50 am
You should be quoting your return values so your expression returns a string, otherwise SSRS will think you are trying to return objects.
April 11, 2016 at 2:40 am
Hopefully someone else will chime in!
Also - switch compatibility view on in IE.
April 1, 2016 at 9:30 am
The value of a multi-value parameter is an array of the selected items.
You can use Array.IndexOf to test if a value is in the array, i.e. selected in the multi-value...
April 1, 2016 at 9:15 am
Surfari, isn't that the Mac browser? Not a Mac guy here.
What I was getting at is there can be rendering issues using Surfari. Your log file looks OK and...
April 1, 2016 at 7:43 am
Viewing 15 posts - 61 through 75 (of 290 total)