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

Reporting services url's keep asking for authentication SSRS 2008 R2

$
0
0

Hi all.

Just setup SSRS 2008 R2 on our server, however when I try to browse to the /Reports /ReportManager url's I am asked to authenticate. Even if I try entering the local administrator account this is not accepted. Has anyone else had this problem or is there something I have missed in the setup. Note that I have this setup on a specific host header in the setup e.g. ssrs.mydomain.com/Reports

Thanks

P


SSRS Switch Function error

$
0
0

Hi I am having issue with switch function is ssrs
I have declared a parameter in the report not in the proc
Reportparameter:Sysage,catage,CustomerAge(3 different options to pick at the drop down list)

for the graph i am using two differnt lines but at the category Groups i am using switch function
=Switch("catage Age" = Parameters!ReportParameter1.Value,Fields!catage.Value
,"System Age" =Parameters!ReportParameter1.Value,Fields!SystemAge.Value
,"Customer Age" =Parameters!ReportParameter1.Value,Fields!AccountAge.Value)
It is not picking right drop down list
But instead of Switch Function, if i pick one age like 'catage' it does show the right data

But switch is not picking correctly.

Suggest me how am i doing it wrong.

Thanks in advance

Reporting Services SQL Server 2008 Excel Export Page Number Problem

$
0
0
Hi everyone,

I have seen some threads discussing this issue, but I can't seem to find a solution.

This is my problem:

- when exporting a report to excel the footer in the new xls-file is "Page 1 of 1"
- in my report the expression is 

    =

"Seite "& Globals!PageNumber & " von "& Globals!TotalPages

- is there anyway to solve this?

I am using the SQL Server Business Intelligence Development Studio (Microsoft Visual Studio 2008 Version 9.0.30729.1 SP) and Excel 2003


Thanks for your help.

Peter

Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

$
0
0

Keep getting this error when positioning to the last page of a report.

Using Server 2003...SqlRpt Svcs 2000 sp2

Detail error msg:

  • Exception of type Microsoft.ReportingServices.ReportRendering.ReportRenderingException was thrown. (rrRenderingError) Get Online Help
    • Exception of type Microsoft.ReportingServices.ReportRendering.ReportRenderingException was thrown.
      • Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

Anyone have any suggestions?  Any way to find out what collection is blowing?...or where parameter name: index comes from?

Applying a filtered value to scale and pointer expressions in a radial guage

$
0
0

I am creating a series of gauges with which I'm trying to show how well groups are projecting the number of resource hours they consume each month. The scale of the gauge goes from 0 to a rounded up value of theprojected hours, and the gauge pointer indicates the value of theactual hours used. The range is used to indicate actual is within 10% of the projected hours (green), between 10 to 30% (yellow), or more than 30% off (red). Some examples of gauges that were built individually:

enter image description here

The number of hours that each group projects and uses can vary greatly, as seen from the gauges. I have been able to apply a filter that makes it easy to set the gauge needle to point to the total actual hours for each group by simply changing the group name in the filter of each gauge, but I can't get the sums of projected hours to filter for each group in the scale and range configurations the same way. As a result, if I create a single gauge with a filter, copy that gauge, and then just change the group name in the filter for each new gauge, I can get the corresponding actual hours (i.e., where the needle points), but the scale defaults to the sum of projected hours for ALL of the groups:

enter image description here

So in this example, while the three groups have used an ACTUAL 50, 15, and 310 hours, the total PROJECTED hours for ALL groups is between 600 and 700. In the second example, just above, this is not too bad for the third gauge, but for the first two, trying to create the multi-colored ranges shown in the first example just doesn't work, because of the ratio between the actual and the projected. What I need to be able to do is to modify the scales and the ranges to reflect the projected hours for each group, using the same filter that I have successfully applied to the gauge pointer using a Data Group filter.

The problem arises from the fact that specifying the group name in the Data Group filter only applies to the sum in the Gauge Data setting. I need to create over 50 of these gauges, and if it is necessary for me to edit the expressions for the scale and ranges of each of these directly, this will become time prohibitive. Does anyone know of some way that I can write these expressions and be able to change the group name in only one place, in the same way that I've been able to do with the pointer?

Thanks.


Report Builder 3.0 or 4.0 ?

$
0
0

Hi,

For SQL Server 2012 whats the  version of Report Builder that is installed ?

is it 3.0 or 4.0 ?


Best Regards,
Silna
Please feel free to ask if you have any doubts and remember to mark the correct replies as answers.

Row Header Value

$
0
0

Hi All ,

My SSRS Report table look's like below  :

i want to add row headers as per the value in the Product Column  . So if the products are in windows 2008 ,linux ,linux 99 ,windows 8 the row header should be SSRS ,if the Product Column values are in Windows 2000 enterprise,windows 7.,linux enterprise the row header should be BI

Product  Price
Windows 2008 100
windows 2000 enterprise  300
windows 7 5000
linux  600
linux enterprise  55555
windows 8 7777865
linux 99 44546457

                  

Kindly help it's very urgent

Thanks

Priya

                     

. Product  Price
SSRS Windows 2008 100
BI windows 2000 enterprise  300
BI windows 7 5000
SSRS linux  600
BI linux enterprise  55555
SSRS windows 8 7777865
SSRS linux 99 44546457
SSRS windows 8 7777865

DRILL DOWN AND DRILL THROUGH REPORTS IN SSRS

$
0
0

HI ALL,

I KNEW DRILL DOWN REPORTS...WHAT IS DRILL THROUGH REPORTS..WHAT IS DIFFERENCE BETWEEN DRILL DOWN AND DRILL THROUGH REPORTS?

THANKS IN ADVANCE...

 


Filters, use a conditional expression for the value using the IN operator

$
0
0

I want to filter a Tablix and the operator is "In".  if I use:

1,3

for the value, I see only the summary rows as expected.  if I use:

1,2,3

for the value, I see all rows as expected.

However, I want to use a condition based on a Boolean parameter being passed in, "ShowAll".  So I wrote my expression like this:

= iif((Parameters!ShowAll.Value=TRUE),"1,2,3", "1,3")

and the report wont run.  I get the error: "The size necessary to buffer the XML content exceeded the buffer quota.

How can I use a conditional expression for the value using the IN operator?

Thanks.


Glitch in system

$
0
0

Hi,

I just received an error saying that "We're sorry. You've found a small glitch in our system.  Please try that again.". Here's the screenshot.


Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com

How to have cumulative value calculation

$
0
0

Hi All

Below is my report in which i need to find cumulative value 

i am using code =RunningValue(CInt(Fields!Variance.Value), Sum, Nothing)

but the result comes as -10 ,-25,and so on for the 1st row 

and -459,-474 for the second row

I just need cumulative to be to calculate to 1st row and 2nd row it needs to start fresh

for e.g 2nd row it should be -10,-35 and so on

Any help on this much appreciated

Thanks

 


Pradnya07

Using Tablix Filters with Multiple Values

$
0
0

Hey :)

I'm using Report builder 3.0 in orde to create reports in my work. I cannot seem to figure out the below issue on my own though. 

I'm trying to add a filter to my tablix. I'm going through Tablix properties --> Filters. I select myExpression as "Compare Period", this is where it becomes tricky. I now want to showtwo values. I only want the tablix to show "current" and "prior", I have tried to do this is in several ways.

Example, Operator: Like. Value: *current*; *prior*

Nothing seems to work. Any ideas? All help is highly appreciated!!

Thank you for your time!

Best regards,

Caroline

Backing up the Encryption Key with Powershell

Sort month from june to may in SSRS

$
0
0

Hi I am quite new to creating reports in SSRS. I have created report and i am getting months from January to December. I want these months to start from june to May. I am sorting group in row. I am using =Month(Fields!Posting_Date.Value)

Can somebody help to resolve this issue?

Issue - The report execution has expired or cannot be found. (rsExecutionNotFound)

$
0
0

Hello Experts,

I am doing performance analysis for SSRS 2008 report server and running various reports that return different no. of records. When I run reports ranging from 25 K records to 1 million records, I am getting the reports successfully.

BUT when I am running a huge SSRS 2008 report (that returns 2 million records) and it gets rendered few times and sometimes it gives me an error,

"The report execution <some string> has expired or cannot be found. (rsExecutionNotFound)”.

After reading many forums I tried setting CleanupCycleMinutes to 30 in the report server config file but it didn't help either.

When I see SQL Server log after this issue comes I see following message there;

"A significant part of sql server memory has been paged out. This may result in performance degradation. Duration: 300 seconds. Working set(KB): 97672, memory utilization 42%"

I have also enabled the lock pages in memory option but it is also not resolving the issue and page out is still happening.

I am using SSRS 2008 64 bit, Win Server 2003 64 bit. RAM is 8GB.

Please help me to know what are these issue, are these two issues related and how to fix it?

Regards.


Retrieve Error message of Permissions in SSRS

$
0
0
Goal:
To make the user to have full access to all document in report server.


Problem:
I retrieve the error message:
"User 'ADVENTUREWORKS\sara' does not have required permissions. Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed."

Information:
*Inside of my VM player, I have windows server 2012 with SQL server 2012 enterprise

*In order to make sara as a administrator in windows authenication I have created "sara" as a user in AD Administrative Center.

*I have made "sara" as a administrator user as windows authenfication in Windodws 2012 and she is a content manager and system administrator in SSRS at"http://sharepoint01/Reports"


Duplicate Data - SQL Report

$
0
0

Hi

I have designed a report using the Report Builder within SQL Reporting Services. I am extracting the number of queries logged by client from data that is available with a SharePoint list.

The error that I am experiencing is that data is being returned for each client.

Please see this table:

Client Sub Client Number Open Number Closed Aging 0-5 Aging 5-30 Aging 30+
ABC CDE 1 0 1 0 0
ABC CDE 1 0 1 0 0
DBC FDR 1 1 0 1 0
XYZ PIO 1 1 0 1 0
DBC FDR 1 1 0 1 0
XYZ PIO 1 0 1 0 0


The expression that I am using for Number Open is =SUM(IIF(Fields!Status.Value = "Logged",1,0)) Or Count(IIF(Fields!Status.Value = "In Progress",1,0)) and for Aging 0-5 =Sum(IIF(Fields!Aging.Value<5,1,0)).

I need each client and sub client to be available in a single row with the values added, so the above table would appear as follows:

Client Sub Client Number Open Number Closed Aging 0-5 Aging 5-30 Aging 30+
ABC CDE 2 0 2 0 0
DBC FDR 2 2 0 2 0
XYZ PIO 2 1 1 1 0


I would really appreciate your assistance.
Thanks
Tony

Dynamic function expression for time field

$
0
0

Hi,

Am working on report builder 3.0 to create a report. And i want to provide dynamic expression to get difference between 2 time values. Below is the detail about the requirement and query am facing at this moment

Have 2 fields in dataset which holds only time(hh:mm:ss format) values. I want to use these fields and get difference in time converted into minutes format dynamically when report runs. I provided something like this Minute(Field!Column1.Value - Field!Column2.Value)) . But it gives #Error in report column.

Can anyone help me to write expression for this requirement.

Thanks

Sri


Developer

SSRS - Grid Line Manipulation for Line Chart

$
0
0

Hi All,

I have a line chart which is plotting month end values on the y axis and dates on the x axis.  I'm looking to only show the x axis grid lines on quarter end dates and I was wondering if there was a way to do that.  It needs to be dynamic because the range may vary depending on what data is inputted.  I was playing around with manually setting the grid line interval and offset but I was running into issues since it wasn't dynamic.

I'm hiding rows in a table using this expression and I was wondering if there was a way to apply it to the grid lines.

= IIF(Fields!DTEND.Value = Fields!QuarterDate.Value, False, True)

Thanks,

Rich

Problem with native SSRS security and AD groups in SQL 2012

$
0
0

Hi,

I have Windows Server 2012 which is domain-joined.

It has installed SQL Server 2012 Reporting Services in native mode with SP1.

It is configured using URL: https://reports.mycompany.com/ReportManager and /Reports

SCOM and TFS are using it and everything works fine.

The problem is when I try to configure Dynamics CRM 2011 (with latest rollup).
It can not grant permissions to AD Security group.

I have tried manually grant permissions to AD group BUILTIN\Administrators and/or MYDOMAIN\Administrators, but simply does not work. Manually adding AD users works, but AD security groups does not. I have tried adding it by AD object GUID and/or SID, but without success.

My credentials are full Domain Admin and Local Admin and I have all permissions on SSRS instance.

SSRS windows service instance is running as AD service account.

Any reason why I can not add AD security group to SSRS 2012 ?


-- Hrvoje Kusulja

Viewing all 10045 articles
Browse latest View live


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