Tagged Questions
A "pivot table" is a method of summarizing data in tabular form. Typically, these have a category column in the left hand side, and multiple summary columns to the right. Each different category will have its own row.
36
votes
4answers
12k views
Is it possible to Pivot data using LINQ?
I am new to LINQ, but I am wondering if it is possible to use LINQ to pivot data from the following layout:
CustID | OrderDate | Qty
1 | 1/1/2008 | 100
2 | 1/2/2008 | 200
1 | ...
11
votes
5answers
56k views
How can I refresh all the pivot tables in my excel workbook with a macro?
I have a workbook with 20 different pivot tables. Is there any easy way to find all the pivot tables and refresh them in VB?
8
votes
4answers
9k views
MYSQL - Rows to Columns
I tried to search posts, but I only found solutions for SQL Server/Access. I need a solution to MYSQL (5.X).
I have a table (called history) with 3 columns: hostid, itemname, itemvalue. If I do a ...
7
votes
2answers
129 views
Pivoting in Linq
I am using LINQ-to-Entities, and would like to perform a pivot.
For exampe, I have this table:
| data1 | data2 |
+-------+-------+
| 1 | A |
| 1 | B |
| 2 | P |
| 2 | Q ...
5
votes
3answers
5k views
JavaScript pivot table
Are there any open source pivot tables with drag&drop support or what is the fastest method to implement it?
Which JS library to use? I wanted JQuery, will this be the right solution?
5
votes
6answers
5k views
Pivot data using LINQ
I am trying to see if I can use LINQ to solve a problem I am having. I have a collection of items that contain an Enum (TypeCode) and a User object, and I need to flatten it out to show in a grid. ...
4
votes
2answers
433 views
Pivot Table-like Output in R?
I am writing a report that requires the generation of a number of pivot tables in Excel. I would like to think there is a way to do this in R so that I can avoid Excel. I would like output like the ...
4
votes
2answers
1k views
jquery Pivot Table
I've been researching different jQuery or Javascript based Pivot tables. I've found a couple (http://gumption.org/2004/pivot_table/test_page.html and http://oat.openlinksw.com/). These 2 apps fail ...
4
votes
1answer
460 views
SQLAlchemy Column to Row Transformation and vice versa — is it possible?
I'm looking for a SQLAlchemy only solution for converting a dict received from a form submission into a series of rows in the database, one for each field submitted. This is to handle preferences and ...
4
votes
1answer
923 views
OWC PivotTable toolbox item grayed out for WebForm
I'm trying to build a Pivottable on a webform in vb.net 2005 using OWC. I have added the Pivottable item to the toolbox, but it is grayed out and so I cant use it. If I develop a Winform instead of a ...
3
votes
3answers
256 views
c++ pivot table implementation
Similar to this question Pivot Table in c#, I'm looking to find an implementation of a pivot table in c++. Due to the project requirements speed is fairly critical and the rest of the performance ...
3
votes
1answer
257 views
Grouping on multiple variables in R
I'm a power excel pivot table user who is forcing himself to learn R. I know exactly how to do this analysis in excel, but can't figure out the right way to code this in R.
I'm trying to group ...
3
votes
2answers
253 views
Excel 2007 VBA - Pivot table field list??? creates error
Last update on October 14, 2011 - I know more info now, so I will summarize everything here and delete all my previous descriptions/questions.
The problem is, after running a certain program, I get ...
3
votes
5answers
99 views
Help with a SQL query joining multiple tables
First I will explain the case, I have a table tbl_game with a structure as such. This table contains, the time where the game was started and pair playing the game
| id | time | ...
3
votes
1answer
106 views
how do i create a (temporary?) stored procedure to assist making a summary view?
I have view table that looks like this:
And I started to create a view to summarize by status for each currency:
WITH C AS (SELECT * FROM CampaignsPublisherReportSummary)
SELECT
'Total' T,
...
3
votes
1answer
300 views
Cross-tabulation (contingency table) using Python ORM?
Anyone doing very basic statistical explorations on data living in a relational database has had to calculate cross tabulations,also known as contingency tables(wikipedia page). these are ...
3
votes
6answers
2k views
correct way to create a pivot table in postgresql using CASE WHEN
I am trying to create a pivot table type view in postgresql and am nearly there! Here is the basic query:
select
acc2tax_node.acc, tax_node.name, tax_node.rank
from
tax_node, acc2tax_node
where
...
3
votes
6answers
790 views
are there any good web third party tools to do excel like pivot tables
i am using asp.net mvc so the solution can be either server side or client side (jquery, etc).
i can't seem to find any good tools that can mimic excel pivot tables (allow user to get the pivot table ...
3
votes
4answers
5k views
mysql query to dynamically convert row data to columns
I am working on a pivot table query.
The schema is as follows
Sno, Name, District
The same name may appear in many districts eg take the sample data for example
1 Mike CA
2 Mike CA
3 Proctor JB
4 ...
3
votes
9answers
35k views
How to change pivot table data source in Excel?
I want to change it from one database to another.
There don't appear to be any options to do this on the pivot table context menu
2
votes
1answer
36 views
MySQL dynamic cross tab
I have a table like this:
way stop time
1 1 00:55
1 2 01:01
1 3 01:07
2 2 01:41
2 3 01:47
2 5 01:49
3 1 ...
2
votes
5answers
52 views
How to select entire excel spreadsheet for pivot table?
I want to be able to select and reference all of the tabs in my excel spreadsheet (to get totals of everything), but the data source only allows one tab to be selected... is there a way to select and ...
2
votes
1answer
118 views
How to develop pivot table in Java/Groovy
I am developing a tool that is to replace a rather large Excel Workbook and I am trying to minimise the development effort. In order to do so - I am looking for Java Components that do similar things ...
2
votes
2answers
85 views
Combine two MySQL tables, use data in one for headers in the combined table
I want to combine two MySQL tables, but use some data in one of them as new headers in the combined one. I have two tables, like this:
A log of fruits we've eaten each day.
id date fruit
5 ...
2
votes
2answers
115 views
Rearrange an R data frame like an Excel PivotTable
I have the following data frame in R:
> str(x2)
'data.frame': 262064 obs. of 15 variables:
$ ykod : int 99 99 99 99 99 99 99 99 99 99 ...
$ yad : Factor w/ 38 levels "BAKUGAN","BARBIE",..: ...
2
votes
3answers
228 views
Swing component for Olap analysis
We're creating a desktop application which will use OLAP server to perform analysis. I'm searching for a Swing component which can provide functionality similar to JPivot. We need to:
Be able to add ...
2
votes
1answer
144 views
Obsolete items in pivot table list
In a pivot table of mine, when I go to filter the data using the Row Label, where it shows the checkbox list where you can select one or many or all items to be included, this list includes items that ...
2
votes
1answer
52 views
Can I use PIVOT without the brackets?
PIVOT
(
count(DueCount) FOR dueLibraries.s_folder IN ([Assembly Report-TUL],[Balance-TUL],[BOM-TUL],[Hydrostatic-TUL],[Inspection-TUL],[IOM ...
2
votes
1answer
138 views
Pivot values of a column based on a search string
Note: I would like to do this in a single SQL statement. not pl/sql, cursor loop, etc.
I have data that looks like this:
ID String
-- ------
01 2~3~1~4
02 0~3~4~6
03 1~4~5~1
I want ...
2
votes
2answers
69 views
Best to build a SQL Query or extrapolate with another program?
I am having trouble developing some queries on the fly for our clients and sometimes find myself asking "Would it be better to start with a subset of the data I know I'm looking for, then just import ...
2
votes
1answer
301 views
Bind Pivot table for Gridvew
I am developing a roster application (asp.net with VB + sql server) to let user input shift duty record, proposed screen is as follows:
sample screen:
...
2
votes
2answers
422 views
Can I create a custom summary field in Excel 2007 pivot table?
Is there anyways to create a custom "summarize value field by" function to be used in an XL 2007 pivot table. The standard Sum, Count, Average, Max, etc. are not sufficient for me. I would accept a ...
2
votes
2answers
155 views
Question about the merits of Pivot vs Case
I have a query that returns attributes of an object. What I want is to have attributes pivoted into the table. I have seen pivot tables used to do something like this but only where aggregate ...
2
votes
3answers
278 views
jQuery formula parser?
I'm trying to build a pivot-table javascript application with jQuery, and I want to let the user defines its own calculated fields (just as seen on Excel!).
So, if f1, f2, f3 are the columns of the ...
2
votes
1answer
335 views
Create comma-delimited values in Excel (using PivotTable)?
Is there a way to generate comma-delimited values in Excel (optimally using a PivotTable)? Consider the following data:
Object Color
foo Red
foo Blue
bar Red
bar Blue
bar Green
baz ...
2
votes
1answer
382 views
Entity Framework 4: how to insert the next highest number without using an identity field?
I have a Product table that uses UPC as part of the primary key. Everything is fine until the product doesn't have a UPC and the recommended way to solve this is to generate a number between 8004 + ...
2
votes
1answer
286 views
SQL Pivot Problem - multiple aggregates?
I have the following data returned buy a simple SQL query. The Number of sites could change, but X,Y,Z are fixed (they are different types of accidents, and the data stored represents the number of ...
2
votes
1answer
478 views
count concatenate column in mysql
I want do like this, but for another case that not function.
This is my example table:
Date Model No Line Range Lot Status
2010-08-01 KD-G435 1 01 ...
2
votes
0answers
207 views
Filter Multiple Pivot Table Separately In Excel 2010 [closed]
How can I have multiple Pivot Table and Charts from the same source and use separate grouping and filtering for each one?
I have two charts: one I want to show Weekly data and the other should show ...
2
votes
3answers
348 views
Generating an Excel spreadsheet with a Pivot Table over a large embedded data source?
I have a large amount of data that is possibly more than a million rows. I want to be able to offer users the ability to download an Excel spreadsheet with a Pivot Table over this data, disconnected ...
2
votes
2answers
411 views
Using Excel to display the number of occurrences within a date range
I've got a list of transaction dates and the user id of the person who made the transaction on that date (just 1 Tx/day allowed). For example:
I'd like to create a matrix which shows, as of each ...
2
votes
1answer
3k views
Pivot Tables in Crystal Reports?
I need to make a pivot table on my Crystal Reports. Right now i'm using an OCDB connection...but while i know you can create a pivot table in CR, i'm not 100% sure how to do it. Anybody here know an ...
2
votes
3answers
5k views
Excel VBA: Recreate Source Data from Pivot Table Cache
I am trying to extract the source data from a pivot table that uses a pivot table cache and place it into a blank spreadsheet. I tried the following but it returns an application-defined or object ...
2
votes
2answers
201 views
“Pivot” a table in Excel
I've got a large set of data in Excel 2007, but the rows should have been columns, and vice-versa. Is there a simply way to "pivot" this spreadsheet, rearranging all cells so that the rows become the ...
2
votes
2answers
3k views
Refresh Pivot Table with Apache POI
I'm currently working on a Java application that uses a template excel file that contains a pivot table.
The template file also has a data sheet that seeds the pivot table. This data sheet is ...
2
votes
6answers
3k views
Excel - calculating durations of time data spread across multiple rows
I have a spreadsheet with a dataset of a number of transactions, each of which is composed of substeps, each of which has the time that it occurred. There can be a variable number and order of steps.
...
2
votes
3answers
607 views
How do I programmatically build ad-hoc queries quickly?
I've used Excel PivotTable to analyze data from my database because it allows me to "slice and dice" very quickly. As we know what is in our database tables, we all can write SQL queries that do what ...
1
vote
0answers
47 views
Creating Dynamic Pivots with Grouping on the Fly
I would like to create a pivot as shown here:
http://www.java2s.com/Code/Flex/Grid/HierarchicalAdvancedDataGridColumnGrouping.htm
How ever I want to be able to do this dynamically.
The usage in the ...
1
vote
0answers
74 views
Most efficient way to do a pivot table-like query to summarize user edits in django
I want to show the user the last 10 changes across all of my database objects.
I'm using django-reversion to track the history of changes to my model objects. I'm also somewhat duplicating this in a ...
1
vote
0answers
37 views
Excel table calculation is sloooow - how to optimize this table
There's a primary table in a worksheet, which is the raw data in which users insert data daily. From that table, we extract necessary data for the purpose of reporting (IE statistics) from that raw ...