reporting-services

SSRS Data label on first and last entry

寵の児 提交于 2019-12-25 08:10:04
问题 I have a line graph which tracks days passed on the X-axis. I would like for the data points to be visible on only the first entry and the last entry. I tried the below, which I thought should show only the final entry, but in fact had the opposite effect. =iif(Last(Fields!DateTime.Value),False, True) Changing from the Last to the First (or Max or Min) all have the same effect. An example with data point on only the first entry: Many thanks. 回答1: I figured it out. I needed to show it

SSRS 2016 Data source won't display Oracle connection type

梦想与她 提交于 2019-12-25 08:09:46
问题 I have a couple of new SSRS 2016 installations. Both of them fail to show the Oracle connection type. They will show Oracle Essbase, but that isn't what I'm looking for. The full Oracle client is installed in both cases and I can successfully make a connection using the OLEDB connection type and invoking the Oracle OLEDB driver. Unfortunately, I have hundreds of reports that I'm moving to these new instances and the OLEDB client behaves slightly differently than the .Net client and causes

How to PIVOT this query and display only TOP 10 records filtered by SUM(NetWrittenPremium) DESC

ぐ巨炮叔叔 提交于 2019-12-25 08:09:10
问题 In this query I cant understand what would be the proper syntax to PIVOT it by month and also display just top 10 records based on SUM(NetWrittenPremium). ;with cte_TopClasses AS ( select b.YearNum, b.MonthNum, REPLACE(ClassCode,'+','') + ' - '+ QLL.Description as Description, SUM( Premium) as NetWrittenPremium FROM tblCalendar b LEFT JOIN ProductionReportMetrics prm ON b.MonthNum=Month(prm.EffectiveDate) AND b.YearNum = YEAR(EffectiveDate) AND prm.EffectiveDate >=DateAdd(yy, -1, DATEADD(d, 1

How to add column in a SSRS table based on criteria

自古美人都是妖i 提交于 2019-12-25 07:29:27
问题 I am trying to create a SSRS report which has a table to list some data pulled from a query. The current table in SSRS looks like this: LAST NAME FIRST NAME TITLE START END morrow diane pcp 12/15/2009 1/15/2011 morrow diane pcp 5/15/2011 6/12/2013 morrow diane pcp 7/9/2013 12/11/2014 doe jane obgyn 10/12/2013 9/12/2014 ainswor michael opt 3/14/2008 4/23/2011 ainswor michael opt 6/6/2012 9/2/2014 My SQL query just gets each record and adds it as a row. What I am looking to do is, in my SSRS

SSRS Chart w/Series and Mean

爷,独闯天下 提交于 2019-12-25 07:05:15
问题 I have a chart I'm making in SSRS. My database is returning data like this: Period Name, Question, Answer, Count, Mean, Median Nov 09, Can Haz Chezbrgr, Yes, 5, 4, 3.1 Nov 09, Can Haz Chezbrgr, No, 3, 4, 3.1 Nov 09, Can Haz Chezbrgr, DK, 2, 4, 3.1 Period Name is the primary grouping, question is the same for all rows. Answer varies as does count. The mean and median are calculated based on period name & count, but are the same for all values in each period. I have a chart in SSRS that's

SSRS 2008, attempting to hide columns with a parameter and hide rows made blank by hiding columns

こ雲淡風輕ζ 提交于 2019-12-25 07:04:03
问题 So, i've figured out how to hide a column based on a report parameter. I also know how to hide a row based on a lack of values. MSDN article on that What I'm trying to accomplish now is to hide a row that is blank if the columns containing data are hidden by parameter. An example: +-------+-----+-------+-------+----+------+ | User | Zip | Zorba | Queen | Of | Mars | +-------+-----+-------+-------+----+------+ | User1 | 34 | | 3 | 8 | | | User2 | 9 | 39 | 85 | | | | User3 | | | 43 | 2 | 2 | +-

SSRS generate same report for multiple values accepted as parameters

不问归期 提交于 2019-12-25 06:59:20
问题 I need to generate the same report repeatedly for several values. I'm accepting these values using a multi-value parameter in a new report. I have also created a table with the original report as a subreport. How can I pass the values that the user selects in the parameter to this table? I have created a dataset, but I'm not able to bind these values to the dataset, which in turn is bound to the table. I have read several articles, however, I'm unable to get it working. Please advise. 回答1:

Sum Values based on Distinct Guids

混江龙づ霸主 提交于 2019-12-25 06:59:11
问题 I am having trouble getting the SUM of a column of values in SSRS. My SQL query returns something like the following: ID Total Guid1 4 Guid2 6 Guid3 1 Guid2 6 Guid4 6 Guid1 4 I have it grouped in my SSRS Report so it appears like this: ID Total Guid1 4 Guid2 6 Guid3 1 Guid4 6 I need the sum of the Total column, but it wants to sum the ungrouped set of values instead of the grouped set. So I get Sum(Total) = 27 But I WANT Sum(DISTINCT? Guid Totals) = 17 I've tried the solutions that can be

Verify TFS installation

拈花ヽ惹草 提交于 2019-12-25 06:49:52
问题 I have a server that was configured by someone that is not on the company anymore and I need to check the TFS installation and enable that "dasboard" with reports, charts etc. The only stuff working are: Source Control, issue tracking, web access. As far as I could check, Reporting Services seems to be disabled (or not installed) and I don't know how to check SharePoint installation. How can I verify and fix the TFS installation in order to make the reports work? If Reporting Services are not

Get Data from SSRS dataSet

久未见 提交于 2019-12-25 06:04:12
问题 Is it possible (if Yes - how) to retrieve data from SSRS dataset that has been published to the ReportServer ? I have is Azure reporting services setup, and published a DataSource, DataSet, and a report that work perfectly fine. What I want - is to be able to access that "published DataSet" - like some sort of a XML API ? Say hit some URL with params from a browser, and get a XML result with Data from that DataSet 回答1: The problem you will run into is the rsd (datasetFile) is not much itself