Viewing 15 posts - 16 through 30 (of 72 total)
In either the project properties or the report properties (sorry -- not in front of the work PC so I can't check which), there's a property that says what version...
January 19, 2011 at 6:41 pm
Have you tried announcing it at a local users group meeting? If I needed to hire someone or was looking for a job myself, I'd be sure to mention...
January 19, 2011 at 6:32 am
Have you checked the log files? There's usually something to point you in the right direction there. The folder should be "C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\LogFiles" or something...
January 12, 2011 at 1:37 pm
The quickest way I know of is to go to the series properties of the graph, and create an expression for the fill property like this:
=IIf(Fields!val.Value < .2, "Blue",
IIf(Fields!val.Value <...
January 12, 2011 at 1:29 pm
Is the 76% the average of all the months' data? If that's the case, try dropping the SUM() from the expression and just say:
=Fields!DTs.Value/Fields!DNs.Value
January 12, 2011 at 1:05 pm
Hi Steven,
It looks like you have two columns with the same name "ThisMonthThisYear". Does that have anything to do with why it isn't working? As far as I...
January 11, 2011 at 10:46 am
It seems like hardly anyone noticed, but having indicators in 2008 R2 SSRS is a big deal, especially for dashboards. They save you from having to upload a bunch...
December 17, 2010 at 7:34 am
Hi Andy,
I'm curious, do you have Enterprise Edition or did you do some other programming workaround for your DDS?
Thanks,
Doug
December 16, 2010 at 8:14 am
If the web app is ASP.NET, are you using Windows authentication and impersonation in your web.config?
<authentication mode="Windows"/>
<identity impersonate="true"/>
December 15, 2010 at 8:50 am
A data-driven subscription would be a lot easier if you could get Enterprise Edition. If that's not an option, you can do a foreach loop in SSIS just like...
December 15, 2010 at 8:14 am
It's certainly possible with Reporting Services. For year-over-year data, I usually pass the year and/or month in a parameter, then return a column for that month and a second...
December 7, 2010 at 8:04 am
Red Stapler (12/3/2010)
December 3, 2010 at 9:21 am
Strange as it may sound, I listen to movies and movie scores while I work. Not anything with too much action, though. One of my favorites films to...
December 3, 2010 at 7:58 am
I've frequently had trouble with percentages in the past because the query returns an int for that field. Make sure the query is returning a decimal and not...
November 18, 2010 at 9:44 am
You could update table data from a report, but that's strongly recommended against in most circumstances. You probably want to look into a web app instead, as Daniel said....
November 8, 2010 at 10:17 pm
Viewing 15 posts - 16 through 30 (of 72 total)