Viewing 12 posts - 46 through 57 (of 57 total)
Instead of creating multiple flags, create a new dimension describing the status or outcome of the inspection. This new dimension could have values like: New, Operational, Some wear, Schedule repair,...
September 20, 2013 at 10:20 am
Based on your description, I believe your problem is that you try to put everything into one fact table.
The inspection is one fact table, with the grain being one row...
September 19, 2013 at 7:24 am
Maybe the start action is set to a specific package?
Check Project properties\Debugging\Start Action\StartObjectID
Is it set for <Active Package>?
September 1, 2013 at 9:35 am
Workaround:
Fetch the LastUsedNumber in your control flow, store it in a variable, and either:
A) pass it into your data flow source as a parameter
B) Create the SQL statement as...
July 9, 2013 at 6:37 am
I would make the query return the proper groupings instead of trying to do it inside your report.
Sample query to break your dates into half-years:
Select halfyear, base_name, COUNT(base_name) as...
March 21, 2012 at 7:39 pm
The "Percent Rejected Dashboard Report" from Brian Larson's "Delivering Business Intelligence" book might do the trick for you. The report will show one Client per row with a column for...
February 22, 2012 at 11:51 am
Yes, you can use SSRS to display text files. The term you should be googling is resource.
A resource is a managed item that is stored on a report server, but...
January 30, 2012 at 8:15 am
Use this expression in your header textbox: =First(ReportItems!CompanyName.Value)
Where CompanyName is the textbox in your tablix displaying company name
January 27, 2012 at 8:48 am
I made the assumption that when you clicked in the matrix report the action was to open the dashboard report, you add the parameter passing in the same tab where...
January 27, 2012 at 8:41 am
Try this:
Add RAG parameter to other report.
Add your Switch expression to the BackgroundColor property for your textbox, using the RAG parameter as the switching value.
Pass month RAG value from...
January 26, 2012 at 1:41 pm
Could you post a mockup of your chart? Based on your current input, I am not certain what you’re looking for; however have you looked at a table inline chart?...
January 19, 2012 at 3:47 pm
http://technet.microsoft.com/en-us/library/dd220510.aspx
Qoute: A chart data region commonly shows dates along the category (x) axis, and values along the value (y) axis. To specify formatting in a chart, right-click an...
January 19, 2012 at 7:24 am
Viewing 12 posts - 46 through 57 (of 57 total)