Viewing 15 posts - 151 through 165 (of 200 total)
This is an ugly kludge that I'm sure there are better solutions than, but one inelegant way of achieving your #3 is to have a separate matrix/tablix directly below your...
June 9, 2014 at 5:11 pm
AFAIK, reports rendered as HTML through SSRS are not editable. Perhaps someone can correct me, but the reports I have deployed as HTML have all been functionally just like...
May 23, 2014 at 6:37 pm
You can do conditional sorting either in SSRS by using an IIF expression in the sorting properties for your Table/Tablix, or in SQL by using case statements in your ORDER...
May 14, 2014 at 3:14 pm
David's suggestion is how I have always done it. In your WHERE statement you then have something like
WHERE endYear IN (SELECT Param FROM bk_report.dbo.fn_StringSplitter(@endYear, ','))
Then in SSRS make sure...
May 8, 2014 at 12:11 pm
I got some good tuning tips from this Brent Ozar video:
http://www.brentozar.com/archive/2014/01/watch-brent-tune-queries/
May 2, 2014 at 11:16 am
Query tuning is a complex art, but Grant Fritchey's book on execution plans is a good resource to start with. It's available as a free pdf here:
http://www.red-gate.com/community/books/sql-server-execution-plans-ed-2
April 30, 2014 at 4:32 pm
This might be what you're after:
="For " + Format(Parameters!startdate.Value, "MMMyyyy"
April 24, 2014 at 1:13 pm
I think you should be able to do this using groups. Each sub-group can have its own columns, and you can toggle their visibility off of the groups above...
April 22, 2014 at 11:55 am
I think you have to define parameters for subreports in three places:
1. In the subreport itself
2. In the main report
3. Right-click on the cell in the main report containing the...
April 3, 2014 at 12:01 pm
I have seen this done by setting the format to #,###,###
April 2, 2014 at 12:06 pm
Is the parameter being passed to a subreport? If so do you have the parameter defined in the subreport properties on the main report?
April 1, 2014 at 4:39 pm
I have found a similar thing with opening reports that contain drill-downs in Excel 2010. The error I get on opening is "File error: Data may have been lost."...
April 1, 2014 at 10:38 am
You could perhaps try using ReportItems. Have Table A with the results form dataset 1, and Table B with the results from dataset 2. These two tables could...
March 27, 2014 at 11:31 am
Duplicate post. See http://www.sqlservercentral.com/Forums/Topic1552884-391-1.aspx
March 20, 2014 at 11:06 am
Duplicate post. See http://www.sqlservercentral.com/Forums/Topic1552885-1633-1.aspx
March 20, 2014 at 11:03 am
Viewing 15 posts - 151 through 165 (of 200 total)