4
votes
4answers
4k views
Transpose a set of rows as columns in SQL Server 2000
Is there any facility of transposing rows to columns in SQL Server (it is possible in MS-Access)?
I was befuddled because this facility is available in MS-Access but not in SQL Server. Is it by …
3
votes
5answers
812 views
Using Linq to create crosstab results
Hi,
Im wondering if its at all possible to create crosstab style results with Linq.
I have some data that looks like the following:
var list = new[]
{
new {GroupId = 1, Country = …
2
votes
1answer
127 views
SQL Unique Values Numbering Sequence for Pivot
For reporting purcposes, I need to Pivot results of a query that is unique on each record. My current statement is:
SELECT *
FROM Sales AS x
WHERE (select count(*) from Sales where …
2
votes
5answers
257 views
Converting Rows to column
Hi, let's assume
I have a table with columns such as
Cost Rate
Repair 12
Repair 223
Wear 1000
Wear 666
Fuel 500
…
2
votes
1answer
397 views
How do you do a crosstab query in Access with a fixed amount of columns
I want to pull data with an MS Access crosstab query so I can bind it to a report. When I load the page I get a Run-time error'3637': Cannot use the crosstab of a non-fixed column as a subquery.
I …
1
vote
0answers
17 views
Is there any way to print all pages of a Cross Tab Crystal Report through the .NET Crystal API?
We are printing our Crystal Reports via the Crystal .NET API PrintToPrinter method. Recently it was discovered that when printing Cross Tab reports (reports that span multiple pages horizontally), …
1
vote
2answers
901 views
SQL Rows to Columns
Hi,
I have a table and want to transpose its rows to columns, similar to a pivot table but without summarising.
For example I have the following tables:
Question
--QuestionID
--QuestionText
…
1
vote
1answer
93 views
Cross tab data control for winform.net 2.0
Could anyone suggest me any winforms controls for showing cross tab data in .net?
Updates:
1. The control should be editable
2. Binding support will be add-on feature.
1
vote
1answer
801 views
Jasper Reports Crosstab Query
Hi,
I'm using Jasper Reports/iReports crosstabs to create a matrix of student and results.
So for example Jim is doing subjects A, B, C and Sally is doing A, C
What I want is something like:
…
1
vote
4answers
758 views
Crosstab in Cognos
I have a set of data that needs to be displayed as a crosstab in Cognos. Example data includes
ID, Month, Year, State
1, 10, 2008, 25
2, 10, 2008, 26
The problem is that in the …
0
votes
1answer
22 views
Need to display page header and footer
I need to display page header and footer in all the pages. Currently I am not getting in my second page because I am using cross Tab in summary band. Please help me out in resolving this issue.
0
votes
0answers
100 views
crosstab issue in iReport
Hi ,
Can anyone please tell me how to group crosstabs w.r.t report level group in jasper report.
i.e.
in my problem
i am using three crosstabs in details band.....and i want this page to be grouped …
0
votes
1answer
332 views
3-way CROSSTABS in SPSS
I have some data in SPSS that I would like to format in a particular way, but I can't seem to find a way to do it in the documentation.
I have data that consists of 10 question responses, Q1 to Q10, …
0
votes
1answer
118 views
Cross tab query with boolean fields as row headers.
I currently have a table structure that looks something like this(some details omitted):
ColumnName || Type
Date_Of_Job DateTime
Reparied_Service Boolean
…
0
votes
1answer
101 views
How can I create a tabular report in SQL when the column names are in the database, not the query?
http://www.geocities.com/colinpriley/sql/sqlitepg09.htm has a nice technique for creating a tabular report where the column names for the table can be coded in the query but in my case, the columns …
