Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

Lines being removed after publishing to SharePoint 2010

$
0
0

We're a regulated environment, and I created a report that requires a line for a handwritten initial and date. Regardless of whether I use a line or an underline, they are removed once I save it to SharePoint.  Not only that, it concatenates the text before and after the line.

Has anyone ever seen this and/or know a workaround.

Thanks in advance


Matrix column interactive sort

$
0
0

I looked around quite a bit but couldn't get around to the issue I've at hand.

I've a matrix report with one row group and one column group. I want to apply interactive sort so that when a user clicks on the column header based on the values in the column the report is rearranged.

The report shows:

 

Name      02/02/2008       01/31/2008

 

Test1                   15                   12

Test2                     9                   15

 

Now if the user clicks on 02/02/2008 then it will show

Name        02/02/2008         01/31/2008

 

Test2                     9                   15

Test1                    15                  12

 

And toggle if clicked again. Hope I'm clear.

Assistance with a duplication query

$
0
0

Hello

When a new customer contacts us, they are allocated a reference number.

Unfortunately our contact centre sometimes logs the same person without checking if they have contacted us before and the customer ends up with two reference numbers. We want to cleanse this, so:

I would like to output instances where the customer's surname, address1 and zipcode are duplicated butonly if the customer has different reference numbers.

Eg:

        Reference   Surname          Address1                       Zip

        1875         Faulkner             10 Smith Street             08540

        1876         Faulkner              10 Smith Street            08540

I have tried a few ideas, the latest being:

with Duplicates as
(
	select r.LastName
		, a.Address1
		, a.ZipCode
		, COUNT(*) as DuplicateCount
	FROM Reference r
	INNER JOIN Address a ON a.ReferenceNumber = r.ReferenceNumber
	LEFT OUTER JOIN Telephone t ON r.ReferenceNumber = t.ReferenceNumber
	LEFT OUTER Join Email e ON r.ReferenceNumber = e.ReferenceNumber
	group by r.LastName
		, a.Address1
		, a.ZipCode
	having COUNT(*) > 1
)

SELECT
	r.ReferenceNumber
	, r.LastName
	, r.FirstName
	,a.ReferenceNumber
	, a.Address1
	, a.Address2
	, a.Address3
	, a.Address4
	, a.ZipCode
	,t.ReferenceNumber
	, t.TelephoneNumber
	,e.ReferenceNumber
	, e.EmailAddress
	, d.DuplicateCount
FROM Reference r
INNER JOIN Address a ON a.ReferenceNumber = r.ReferenceNumber
LEFT OUTER JOIN Telephone t ON r.ReferenceNumber = t.ReferenceNumber
LEFT OUTER Join Email e ON r.ReferenceNumber = e.ReferenceNumber
join Duplicates d on d.LastName = r.LastName
					AND d.Address1 = a.Address1
					AND d.ZipCode = a.ZipCode

Unfortunately this returns all duplicates, not those with the same surname, address1 and zipcode and different reference numbers.

Do you have any advice on how I can achieve this?

Many thanks.



http://localhost/reportserver keeps wasking me for login and password. How to correct it?!

$
0
0

Hi,

I am having a lot of problems with SSRS and Visual Studio 2010, two of them I posted here, but I couldn't find an answer for any of them.

Because of them, I tried to use the Report Builder, but I can't connect to my Report Server. I tried to access the report server by using the URL http://localhost:80/reportserver but I keep getting asked for login information, if I enter my admin info, it doesn't work.

How can I solve it? It is really driving me crazy, it would be very important if you could help me :)


My Blog - Dicas .NET

Using IIF and AND in SSRS Expression

$
0
0

I have a table like below

I want to hide the rows where ALL 3 columns are 0. All the columns are of INT data type

My expression is like so:

=IIF((Fields!PastVal.Value=0) AND (Fields!DatePay=0) AND (Fields!Line.Value=0),False,True)

But no data is returned except the column label(heading). What could be wrong with my express?

Thank you.


Zionlite

SSRS Query Source

$
0
0

Hello Everyone,

We have a set of queries that are used for both ETL and Reports.  We would like to store these queries in a central location, such as a SQL Server table, so we can maintain them easier.  Pulling queries out of a table field and storing that query in a variable so it can be executed is easy enough in SSIS.  How would we pull a query from a table field and use it in SSRS?

Thank you all for your help.

JamesNT


"If you have to ask about various operating system limits, you're probably doing something wrong." -Raymond Chen

SQL Server 2008 R2 Reporting Service Error

$
0
0

Hi everybody,

 

I have an error when i try to access http://localhost/ReportServer

The report server has encountered a configuration error. See the report server log files for more information. (rsServerConfigurationError)

 

I have found lots of posts according this error but any of it describes my error.

Do you have any ideas about problem reason?

 

side margins with x-axis scalar mode

$
0
0
I am creating a column chart using SQLRS 2008.  When I use the x-axis in scalar mode, I lose the side margins on the chart.  The option to turn on side margins disappears from the axis options menu as well. This results in the first column being partially hidden.  Everything I read says the side margin should be added automatically.  This is not the case.  Has anyone encountered this before?

How to Design Multi Page Report in SSRS 2008

$
0
0

Hi All,

I have managed to create a multi page report. When I am preview mode i can see that the report has 2 pages.

But when I am in design view I cannot view the second page. How can I view the second page. Reason being I am trying to create a template where the table for certain data needs to be at the top of the page and some data at the middle and so on.

Thanks in advance.

Aash.


Aash

ToolTips in a Matrix Table

$
0
0

I have a Matrix table in SSRS 2010 and would like to display tooltips on 2 of the 4 values to explain what they mean.  I cannot seem to get the correct formula. Or am wondering if there is a way.

My matrix is grouped on a text field value, and I am doing a count of the values.  I want to display a tooltip on 2 of the 4 values in the matrix.


Any ideas??  Please?

How to calculate Sales percentage difference between selected year and its previous year in a Matrix

$
0
0

Hi,

I'm trying to generate a report using matrix like this

                                                      Month

Product     PreviousYearSalesAmount    SelectedYearSalesAmount      %SalesDifference

I can populate year sales amount, but i cant calculate the percentage.

Can Anyone help me please.

Note: Month and Year are passed as parameters.

Thank you.


Help on configuring a Scatter Chart.

$
0
0

Hi, I have some data which i need to present in the shown in image below.

Schema and Data:

CREATE TABLE ScatterTest(ID SMALLINT IDENTITY(1,1),Effort SMALLINT, Benefit SMALLINT,Category VARCHAR(15) )

INSERT ScatterTest
SELECT 1,3, 'Revenue' UNION
SELECT 2,1,'Cost' UNION
SELECT 3,3,'Revenue' UNION
SELECT 1,2,'Cost' UNION
SELECT 3,1,'Production' UNION
SELECT 2,2,'Production' UNION
SELECT 1,1,'Production' UNION
SELECT 2,2,'Others' 
 

Explanation: There are 8 projects in the table. I need to show these projects across Efforts and Benefits. 1="H"for High and 2 stands for  "M" as in Medium. These projects are then categorised in various formats, so I also need to cluster them with different colour coding scheme. (As you can see in the image)

Now in the image below you might see wrong plotting of the projects. That's just for representational understanding.


Chaos isn’t a pit. Chaos is a ladder. Many who try to climb it fail and never get to try again. The fall breaks them. And some are given a chance to climb, but they refuse. They cling to the realm, or the gods, or love. Illusions. Only the ladder is real. The climb is all there is.

Report builder error after applying sql server 2008R2 SP3 when click on report builder gives error like 'Application validation did not succeed. Unable to continue.

$
0
0

Hi All,

I applied SQL server 2008 R2 SP3 recently but report builder doesn't work since then

When click on report builder gives error like 'Application validation did not succeed. Unable to continue.

and when I try to see details the error summary like following:

+File, Microsfot.ReportingServices.ComponentLibrary.Controls.dll, has a different computed hash than specified in manifest.

this is urgent.

Please reply me asap.

thanks a lot in advance.

Regards,

Nik


Regards, Naman

churn customer counts per quarter?

$
0
0

customerID register date inactive date Incentives flag 1 1/1/2014 1/6/2015 0 2 1//1/2013 NULL 1 3 11/1/2013 NULL 0 4 11/1/2006 1/6/2013 1 5 12/4/2007 12/1/2013 1 6 9/2/2010 NULL 1

4 12/1/2013 NULL 0

103/1/2015 NULL 0

I have a table like  above, I need  to  develop  T-SQl   to generate the  following  fields

a)year

b)Quarter (calendar year-Quarter)

c)incentives flag

d) inactive customers count previous quarter

e) Inactive customers count this  quarter

f) Inactive customers next quarter

g) active after the end of the next quarter

Invoice Date only 2014 or 2015

$
0
0

Hi Guys,

How can I filter the results on my reports to show only 2014 full year or 2015 invoice dates?

Product.ProductDescription, CustomerAccount.Description, SalesInvoice.InvoiceDate, 
                         Company.CompanyName

Thanks,



Steps for troubleshooting a slow SSRS 2014 server

$
0
0

We have a dedicated SSRS 2014 server running FormsAuth that is running very slow.  ReportManager reports are slow.  Opening folders in windows explorer is very slow.  CPU and memory look normal in task manager yet the machine is running very slow.

Server is Win2012

Intel Xeon CPU E5-2620 (24 logical cores).

24gb ram

Are there any recommended perf counters to look at for this scenario?

thanks


totals in last page

$
0
0

hi,

i have  4 text boxes in my page footer 

these are call total, shipping, vat, total amount 

like everyone else i am stuggling just to keep this on the last page 

is it possible to have some code that  will only show these 4 boxes on the last page of the footer 

steve

Cannot get ODBC Data Source to connect on report server

$
0
0

Hi,

I have an ODBC Connection installed on our PROD server that when you test through I-SQL and the ODBC Administrator it works.

When I add a new data source to the reporting server we interface and press test connection it just hangs for ages then gives a page cannot be displayed.

I have installed all the same on the DEV server and it works fine.  I have set all of the configs to exactly the same!

I feel like something to do with reporting services is not correct.  Any one have any ideas?

Thanks.

Display complete data of SSRS report without input any value in filter

$
0
0

Hi All,

I have set of reports with filters. I need to display complete data of reports without passing value to one of the parameter with data type as text and i don't want to display list of available vales. 

Thanks,

Vivek Singh

Connectivity between SSRS and SAP HANA

$
0
0

Hi all

We currently use SSRS as our main Reporting tool, the company is considering to implement SAP HANA, is it possible to connect SQL Server Reporting Services to SAP HAHA? And what if any are the draw backs?


Thanks
Ruan

Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>