0
votes
1answer
25 views

How do I filter my states columns against a East/West parameter?

I have a report that has a column with different states. How do I filter those states from my parameter that has just East and West instead of individual states? My query for state list is: select ...
2
votes
1answer
59 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
1answer
34 views

SSRS Textbox Entry Limit Chars

I am looking for a way to limit the entry size of a textbox for an SSRS parameter. The report is being rendered in ReportServer 2008. To be clear, this is NOT a textbox rendered in the report. The ...
2
votes
1answer
60 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
2answers
78 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 ...
1
vote
1answer
140 views

Calculating Sum and average in SSRS

I a problem in my report. I have a matrix which goes like this |ID | |Question(TEXT)| |Point(Value)| |Calculated(Average)| |Calculated(Satisfaction)%| ...
2
votes
2answers
37 views

Count 'Number of Transactions'

I'm trying to get a count of 'number of transactions' that occurred'. The data could look like this. Cust # Trans# TransType LineItem 42 5000 1 1 42 6000 1 ...
0
votes
1answer
42 views

SSRS parameter filtering out union part of the query

In my SSRS Report, I have a column named 'Producer Name' and a parameter field call 'ProducerName'. It's currently returning all my producer name rows but in my sql query I union another row call ...
0
votes
1answer
57 views

Rows being multiplied by number of results

SELECT s.SR_Service_RecID -- will have 1 result , p.Description -- will have 8 results , t.notes -- will have 5 results FROM SR_Service s LEFT JOIN ...
0
votes
1answer
44 views

Calculate grand total from different years

I was wondering how I would go about calculating the grand total of a certain count base on a year parameter set up in SSRS. When a certian year is selected the previous counts from all the previous ...
2
votes
3answers
229 views

SSRS 2008 Report Builder: Conditionally Turning off Tablix Filters

Is it possible to turn off Tablix filters based on which parameter is selected? I want my data to be filtered if one value is null but I want my data NOT to be filtered if a different value is null. ...
1
vote
1answer
138 views

SSRS 2008 Report Builder 3.0: Optional User Entered Parameters

My program allows the user to enter in the parameters Start Date, End Date, and Shift. I am going to add another one that is called VCN. This allowed the user to enter in a specific part number and ...
1
vote
1answer
62 views

how to update field names automatically after updating SQL

I am changing the command text for a data set inside the .rdl ffile: I would like to know how can I update the resulting fields that are returned by the select statement: I know that these ...
0
votes
1answer
41 views

How to get prior month data from a selected month

In SSRS, how would I return the prior month data of a selected month. month(lis.s_date=month(getdate()) -1 would get me the prior month data of the current month but I want it to be the prior month ...
0
votes
3answers
210 views

SSRS/TSQL date formatting

Using the following sample query below in SSRS would return month as single number(1-12). What I want to is to display the date as is something like Jan 2000. How would I go about changing my code to ...
0
votes
1answer
240 views

SSRS 2008 Report Builder 3.0: Using CASE and WHEN Function

I have my program set up to allow the user to select a station, then pick between 2 dates, then they pick what shift they want. They can pick Both, First, or Second. First is 6:00AM - 4:00PM and ...
0
votes
1answer
92 views

File Modification Detected message from Visual Studio

I would like to know for what reason I get these messages multiple times per day while my SSRS solution is open? The project 'myProject' has been modified outside the environment. Press ...
0
votes
1answer
67 views

Issue with font size of links in textbox of report

For some reason my subscription to a report gets emailed using the subscription service, the font sizes are increased only on text that has an underlying link for example: However, when I run the ...
0
votes
0answers
30 views

SSRS - only allow monetary value in parameter

I'm creating an SSRS package that requires my end user to enter a monetary value into a parameter. Is there anyway you can make it so that they can only enter numbers in? Is there also a way to make ...
1
vote
2answers
34 views

How to match records for two different groups?

I have one main table called Event_log which contains all of the records that I need for this query. Within this table there is one column that I'm calling "Grp". To simplify things, assume that ...
0
votes
1answer
62 views

SSRS parameter grouping

I'm created 2 reports in SSRS 2008. I now plan on merging the reports into one and allow users to select report type via a drop down option. The reports bring back the same data but are grouped ...
0
votes
1answer
50 views

SSRS - Refine WHERE Criteria in T-SQL Query

I am developing a report that should return results depending on user-specified parameters. There are 3 report parameters, one is a drop down with 'Locations', and the other two are text parameters to ...
1
vote
2answers
258 views

Updating Data Source Login Credentials for SSRS Report Server Tables

I have added a lot of reports with an invalid data source login to an SSRS report sever and I wanted to update the User Name and Password with a script to update it so I don't have to update each ...
1
vote
1answer
96 views

Conditional Group in SSRS Tablix or DB View

I've created a report that is supposed to use a tablix to group data exactly as seen below: Region | State | Customer | CustomerKey | Status North | NY | Bob | 111 | VIP ...
0
votes
3answers
67 views

SQL - returns a part of a field [duplicate]

Possible Duplicate: Split string in SQL I have a column called LastName in the data base that has the following value: Johnson (Ext. 12345) I only want to return the Last name without ...
1
vote
4answers
606 views

SQL Report Builder 3.0 Multi Value Parameter

I have a report that is required to accept number ranges and comma delimited values in a text field parameter. The parameter is for 'Account Type' and they want to be able to enter "1,2,5-9" and that ...
0
votes
1answer
124 views

SSRS - Dynamic Fields

Given: SQL Server 2008 R2 SSRS 2008 Humble Programmer Consider two tables: CREATE TABLE PERSON ( PersonID INT, Name VARCHAR(100) ) CREATE TABLE PERSON_EXTENDED ( PersonExtendedID ...
1
vote
1answer
38 views

Two group by two columns and count on each

Name | Fruit | Red John | Apple | Yes John | Apple | No John | Pear | Yes Mike | Mango | No How can I get a result that looks like: Name | Fruits total | Red fruits total ...
0
votes
3answers
37 views

Filtering BETWEEN string parameters

I have a report with text parameters that represent Quarters and Years. For example, '1Q11' represents the 1st quarter of 2011, '2Q13' represents the 2nd quarter of 2013, and so on. I also have ...
1
vote
1answer
58 views

Combining Case Statements in SSMS

I need to create a report that a user can toggle through data going from Region > District> Committee> Events. I work with set data views that I cannot change. I need to define a District and a ...
0
votes
3answers
311 views

SSRS 2008: Why does a declared query variable show in the “Define Query Parameters” window?

I'm having trouble creating a dataset in Reporting Services 2008. Here's the query I want to use (generic-ized for public consumption): Declare @PersonID as int set @PersonID = (select top 1 personID ...
0
votes
2answers
767 views

SSRS Variable Expression - Sum, Sum, Scope?

I'm trying to write an expression for a variable (not parameter), so that I can use/reference it to do a calculation in another textbox. I have multiple datasets, and I need the ...
1
vote
1answer
198 views

SSRS - Using the LEFT() function on a multi-valued parameter?

I'm having some issues trying to use the LEFT() function with a multi-valued parameter that allows users to select all values. In my dataset, I use the following code: SELECT * FROM TABLE WHERE ...
0
votes
0answers
257 views

Changing matrix column headings by group SSRS 2008

Here is the situation. I am working in MSSQL Server 2008 and SSRS 2008 and I need to extract all sales by supplier for each branch. That seems easy enough, the problem comes in trying to display it ...
1
vote
3answers
333 views

Passing Default Value into SSRS Query

In SSRS I have a report parameter that is a multi-select and has a default label of (None) and default value of 0. In my query I want to set it up so that I can pass in 0 or some other value(s). ...
-1
votes
2answers
545 views

Indicators in SSRS

I have a column in SSRS report. The value is "True" or "False" or "Yes" or "No" or "1" or "0" Instead of showing that in that column, I would like to use indicator. I placed indicator in that column ...
0
votes
1answer
290 views

How to populate a dataset in SSRS from a stored proc

I'm creating a SSRS report from a stored procedure in SQL, when i add a dataset to the report i'm finding i'm having to add this to the top of my procedure in order for fields to be returned into my ...
1
vote
1answer
542 views

CAST error in a Where Clause

On the query below I keep getting this error: Cannot read the next data row for the dataset DataSetProject. (rsErrorReadingNextDataRow) It appears to be the where clause, if I take it out it seems ...
0
votes
1answer
144 views

summing table rows ssrs 2008

Here is my situation. I need to create a report that shows each open work order and that also shows the last labor date, if there is one, and the number of elapsed days since the last labor date. ...
-2
votes
1answer
665 views

Error in FROM clause: near '{'. Unable to parse query text

I'm trying to execute the following query for a Dataset: SELECT S.CUSIP, S.SecName, ISNULL(RA.FinInstCode, '') AS RemarketingAgent, S.IssueDate, S.MaturityDate, F2.FinInstName AS Trustee, ...
4
votes
4answers
2k views

How to list fields from dynamic SQL query in SSRS dataset

I'm running the following query in SSRS. If I add declarations for the two parameters, it runs fine in SQL Management Console. declare @EMRQuery varchar(max) declare @CPSQuery varchar(max) set ...
1
vote
3answers
361 views

Complex Iterating Query in SSRS 2008

After originally composing several reports by hand as part of an MVC 3 (EF4) project for a customer, I have decided it is far easier to compose reports in Microsoft reporting services (SSRS 2008 on ...
0
votes
3answers
161 views

Handling non existent grouping values in sql query for ssrs chart

I am using the following query in an ssrs report. Declare @Year int = 2012 Declare @ProdType_ID int = 1 SELECT MONTH(Ord.OrdDate) AS 'MONTH', COUNT(CASE WHEN @Year = YEAR(Ord.OrdDate) THEN 1 END) as ...
1
vote
2answers
1k views

Add row number to outer group in t-sql or ssrs

I have a query that returns data with group category and some details like this: Category | Title ================== cat1 --- titlex cat1 --- titley cat2 --- titley cat3 --- titlez cat3 --- ...
1
vote
1answer
94 views

How to use User!UserID to limit the data on Reporting Server

I've got a 'User' table which maps each user to the data they are allowed to see. Several future reports will be using this User table and I'd like to proceed with the best approach wto take ...
3
votes
2answers
616 views

TSQL Reporting - Pivot data by day of week?

I'm writing a report that needs to display a week's worth of receipts, grouped by locations, with a separate column for each day of the week. This will be delivered via SSRS and SQL Server 2008 R2. ...
1
vote
2answers
228 views

Create multiple report rows from single row of data

I've been asked to create a report grouped by values in multiple columns on a single row from a SQL database. For example Employee Name | Type1Column1 | Type1Column2 | Type2Column1 | Type2Column2 ...
1
vote
6answers
107 views

SQL syntax increased efficiency

I have an SQL query which uses a similar piece of code as below numerous times (around 50 times) This is causing the query to run slowly. Im looking for a more efficient way of coding this query. ...
0
votes
1answer
2k views

How to set visibility expression in SSRS?

I am using SSRS 2008 with a tablix. I want to make one of my rows visible, when field value = 1 and invisible when this value = 0. How do I configure this? Right now I right-clicked teh row and ...
0
votes
1answer
110 views

How to filter in records from one dataset to another?

I am developing an SSRS 2008 report. I created one dataset to give me the records I want. I also created a different dataset that determines access based on security profiles of the person running ...

1 2