2
votes
1answer
15 views

NULL a Parameter based on another Parameter's selection

I've got a parameter called @Dummy that sets the date parameters to NULL if the selection is 2 (or the second option) in @Dummy. Else it inserts a date into my two date parameters. What I want to do ...
0
votes
0answers
20 views

SQL Report Writer Datepart function

I am trying to use the datepart function in SQL Report Writer 3.0 to extract the month from the current date. I am doing it like this =DatePart("m", Today()) This is returning - 36775 I am trying ...
1
vote
2answers
23 views

SSRS Grey out Parameter based on result from other Parameter

I wondered if it was possible to grey out a parameter based on the the result from another parameter? In this case, if specify date is set to 'No' then Start Date and End Date should be greyed out. ...
0
votes
1answer
45 views

SQL query optimisation / refactoring

Just wondering can anyone see a neater way to write this query. It seems like a lot of repetition to me but I can't see an easier way to write it. It is pulling back Year-to-date data. Output looks ...
0
votes
1answer
21 views

SSRS report repeat table for every parameter value

Guys sorry for the general question here but I have been looking on the internet and cant find a solution. I have an SSRS report. There is one Parameter user must put in before running, @Location. ...
0
votes
1answer
29 views

In-memory table multiple INNER JOIN

I am trying to update a report in SSRS. The query is build by another colleague using a stored procedure, whom has left the project and can't contact anymore. He used an in-memory table for all ...
0
votes
0answers
31 views

Subreport data retrieval error

I have a main report (reportA) generated from tableA and a subreport (reportB) generated from tableB, where the two tables are linked from a field that is PK in tableA an FK in tableB. I have created ...
1
vote
1answer
27 views

SSRS Comparing 2 rows (new vs old) and highlighting the differences / changes

I have a report which gives the current state of an item, and the previous state of an item and I want to display both rows and highlight the differences. For example: STATUS ORDER# NAME ...
0
votes
1answer
31 views

Report with 2 Shared Data Sources in SSRS 2005

I am fairly new to SSRS and am stuck using 2005 right now. I am developing a report in a solution that has 2 Shared Data sources. I have a column in data source A that needs to be tied to a column in ...
1
vote
1answer
44 views

SSRS custom code and variables life

I have a report that needs to process the data that it get from SQL before show it. For that, I have a custom code, and a Dictionary where I push all the processed data. My problem is that if I save ...
-2
votes
0answers
35 views

Mail subscription is not working with SMTP failure error [closed]

I want to send SSRS reports to my clients through mail. I have configured the gmail smtp server in my Windows 2008 R2 server. When I scheduled the reports it started throwing this error: Failure ...
1
vote
1answer
57 views

How to check for NULL values when using the SUM function in SSRS

By default, the SUM function in SSRS excludes NULLs. I want to be able to check for ANY NULL values in the details group and throw an error in the summary group. In the details view I use this to ...
-1
votes
1answer
21 views

ssrs reports with user time display

suppose report server is in Germany and user is in USA, now the user will generate report but with USA timing displaying in the report. How to do it? in the expression if I am using ...
0
votes
1answer
31 views

Select Statement based on user defined variable

I am trying to do a simple select statement based on the input of the user (SSRS). Help! select * from Table1 WHERE Case when @x = 'Yes' then (select * from Table1 where [Column1] < 0) end; case ...
0
votes
0answers
38 views

Field content visible in a View not appearing in SSRS Dataset

I've created a number of calculated columns in a SQL Server 2008 R2 table and want to have the details displayed in a SSRS report. The view I'm using to show the columns is: SELECT ...
0
votes
2answers
24 views

calculation shows NaN error

In my visual studio report I have a sum of 2 textboxes that when calculated shows 'NaN'. The reason it does this is because the calculation for certain projects is 0. My simple calculation is ...
1
vote
2answers
73 views

SQL Server 2008R2 SSRS Reports Cannot Connect To Datasource: Cannot create a connection to data source

We're attempting to deploy an existing SQL Server/SSRS configuration to a new set of hardware. SSRS is running on the same server as the SQL Server database we're trying to get reports from. Whenever ...
1
vote
1answer
58 views

Parameters from Stored procedures Inside SSRS

I am trying to use SQL Server Reporting Studio (SSRS) to create reports that allow user to choose a database on sql server and based on the choosen databases information about tables on the database ...
0
votes
1answer
28 views

SSRS Visual Studio 2008 - How to compare name to pipe delimited list of names?

I am fairly new to sql. I am trying to get a count of activities done by specified people in a persons table. Pseudo sql query: select count from activities table a left outer join persons table p ...
0
votes
0answers
29 views

Converting .rtm files to .rdl files

We are currently using Report Builder by Digital Metaphors which has an .rtm file extension that is basically XML. We are about to start using SQL Reporting Services. We have a lot reports that ...
0
votes
1answer
48 views

How do I set 1st row value from sql in ssrs report?

I'm working on SSRS report. There are two main fields CurrentMV and PreviousMV both are having there different formulas but I'm taking PreviousMV as a value of CurrentMV using ...
0
votes
2answers
35 views

How can I write expression to take an subtraction of two fields in ssrs?

I'm working on SSRS report. There are two main fields CurrentMV and PreviousMV. field CurrentMV having expression =Sum(Fields!CurrentMV.Value) field PreviousMV having expression ...
1
vote
1answer
38 views

How do I use Previous function in SSRS

I'm working on SSRS report. There are two main fields CurrentMV and PreviousMV both are having there different formulas but I need to change field PreviousMV to take a value of CurrentMV but previous ...
0
votes
0answers
53 views

There is already an open DataReader associated with this Command which must be closed first SQL Reporting Services

I am getting the 'already an open DataReader associated with this Command which must be closed first'. I have enabled MARS but I still get the error. I'm using SQL server 2005 and I'm doing this ...
1
vote
1answer
32 views

Cannot a select query fields in Report Builder 3.0

The following is the query that I have entered in the Report Builder Dataset. However, I can only see the variables for first Select * from #Temp and not the variables from the second select ...
-1
votes
2answers
45 views

SQL Query randomly stopped working?

I have an SQL query that provides information for an SSRS report. The report stopped working today and I've checked the query and its not working either. I cant see anything wrong with the query but ...
0
votes
1answer
41 views

Get Year from a Parameter with a date function

I need to get the year YYYY from a parameter (@PrmEnd2) with a default value = DateAdd("d" , -1 , DateAdd("m", -3, DateSerial(Year(Now()), Month(Now()), 1))) I have tried ...
2
votes
1answer
62 views

how can i concatenate fields inside of my dataset?

i have a dataset, dataset1: i am trying to do: select col1+col2, col3 from mytable this does not work; however this is no problem: select col1, col2, col3 from mytable how can i concatenate ...
0
votes
0answers
70 views

SSRS Report Builder - Only Show Header On First Page (With Page Numbers)

So I am running into the problem where my report header is being displayed on every page, but I only want to display it on the first page. The solution that people on this forum have given is to just ...
0
votes
2answers
114 views

MVC 4 - Reporting and Stored Procedure with SqlParameters

I'm using MVC 4 and Entity Framework to develop a web application. I have a reporting function which is based on stored procedure. Here is how I do to get a report : public static DataSet ...
0
votes
1answer
63 views

Exclude Friday & Saturday while using DATEDIFF function in SSRS

below is my SQL Query used to calculate the number of days between two days SELECT count(*) as NoofCalls, outside.ReferenceNo, outside.WorkflowType, outside.Department, inside.CompletedDate, ...
1
vote
1answer
70 views

Porting SSRS reports from Dev to Production Server

I am sort of new to SSRS development environment and this question may be elementary to quite a few developers who have worked with SSRS for a long time. Till a few days ago I was developing reports ...
0
votes
3answers
60 views

Filter data based on date provided by user

I have a SQL query as shown below:- select * from dbo.NGPTimesheetsPosition where ProjectNO = '12169-01-c' AND CreditorEmployeeID <> 'E0000' AND DocType = 'Time Sheet' This returns the below ...
0
votes
1answer
29 views

Setting date end parameter to 12 months ago

I have to pull some comparative data and want to set the reoport to run automatically. To get the first date range I use parameters =DateAdd("m", -3, DateSerial(Year(Now()), Month(Now()), 1)) ...
0
votes
1answer
31 views

how to handle datasets that have complicated logic and many fields?

I have a dataset, dataset1 it has approximately 20 fields. (not yet implemented) let's say for the purposes of this question, it has only 4 fields: field1, field2, field3, field4 i would like my ...
2
votes
2answers
84 views

How can I group by rows and columns?

I can not find any question/answer that could help me to get close to my goal. I have the following table check code on SQL Fiddle. SITENAME RTYPE SEASON CTRSTAT CTRTYPE UNITS STARTDATE WKTYPE ...
0
votes
1answer
29 views

SSDT Parameters

I am trying to use SSDT to deploy a report that will allow for the input of 2 parameters that I can use for the start and the end of a log file. My parameters are declared as DateTime under the ...
0
votes
1answer
47 views

SSRS 2008 Report Snapshot Timestamp

In SSRS 2005 my report was setup to take snapshot history 5pm daily and it would use the Now() expression to capture the date and time. This would capture the date and time of 5:00 PM and preserve the ...
0
votes
2answers
44 views

Error passing parameters in Report

I am trying to use SSDT to deploy a report that will allow for the input of 2 parameters that I can use for the start and the end of a log file. My parameters are declared as DateTime under the ...
2
votes
1answer
64 views

Result set with multiplied rows into an SSRS report

I need to get this query into an SSRS report. SELECT s.SR_Service_RecID -- will have 1 result , p.Description -- will have 8 results , t.notes -- will have 5 ...
0
votes
1answer
56 views

Invalid Column name error in SSRS 2005

I am having an issue with SSRS 2005. I have a case statement that that works fine in other queries and reports, but errors on the latest report for some reason. I don't believe its an issue with the ...
0
votes
1answer
30 views

Prompting User for multiple values (and using results in query)

I am trying to write a report query that prompts the user of the report to enter an array of values. I tried using something like: SELECT class_style_view.Course_Code FROM ...
0
votes
1answer
174 views

How to get multiple values along with null values in sql server and ssrs

I am working on this SSRS report, where user is asking me to create a report that has three parameters: Term, Student Status, and Admission Offer. Description: There are following distinct admission ...
-4
votes
1answer
47 views

Execute SQL from SSRS Report

I have a report that shows me all open items in our system. Is it possible to include a button on the report that closes the item by executing a sql statement? For example on click it would retrieve ...
0
votes
3answers
72 views

How do I format date and time on ssrs report?

on SSRS report I need to show todays date and current time i tried this =FormatDateTime(Now,"MM/dd/yyyy hh:mm tt") but this is not working for me giving an error. Anyone please help me for ...
0
votes
3answers
99 views

How do I display todays date on SSRS report?

I want to show up Todays date as report generated date on SSRS report. How can i do that ? should I use any variable ? please help me I'm newbie to SSRS. For example refer this image:
0
votes
2answers
84 views

Why use sql language instead of mdx language in ssrs?

I was looking at pluralsight´s SSRS-training and they used regular sql to get data to the datasets. I am just learning mdx and when I work with datasets I so far only use mdx to get data. Should/could ...
2
votes
5answers
82 views

SSRS - Ignore SQL Variables in my query

I have a query that works very well in SQL. When I try to bring this into SSRS, the report asks for 4 parameters. Two of the parameters/variables are actually based on the other Two parameters as ...
1
vote
1answer
68 views

Query in SSRS- How do I JOIN one table to another matching only data in the middle of the column

I'm Trying to JOIN tables based on matching contract numbers, however the first table has the word "contract" before the number and a bunch of spaces after the number. I cant seem to figure how to do ...
0
votes
2answers
118 views

SQL - How to check for multiple values of one column while only returning one row?

Sorry if the question was worded weird. I'm writing a report and I have a table that has fields like this.... applicationID statusid statuscreationdate 123 1 3-18-2013 ...

1 2 3 4 5 12