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.

learn more… | top users | synonyms

0
votes
0answers
8 views

Excel Recalc all EXCEPT for Querie Updates

I have a very large database that comes from a sequel server - I update it once a day. It feeds several pivot tables, some of which use date range (calculated fields) within the database to display ...
0
votes
0answers
7 views

Count distinct values in a pivot table field

I have a table of data that I am turning into a pivot. Most of it is fine, but I have difficulty with one small section: I've been asked to include a count of distinct values in a certain field. Is ...
0
votes
1answer
17 views

MySQL pivot query

I used to have a query SELECT ps_target_ecpm, ps_actual_ecpm FROM publisher_stats JOIN domain ON domain.dmn_id = ps_dmn_id LEFT JOIN langue ON langue.lng_id = domain.default_lng_id WHERE ...
0
votes
1answer
32 views

Use formula in custom calculated field in Pivot Table

In Excel Pivot table report there is possibility for user intervention by inserting "Calculated Field" so that user can further manipulate the report. This seems like best approach compared to using ...
1
vote
1answer
68 views

All columns to rows mysql

I have a table in mysql called 'prices_x' that looks like this: ID Fecha Hora hfmachine1 hcmachinex hfmachiney hfmachinez hfmachinep etc... 1 12/01/01/ 00:00 90 100 100 ...
1
vote
0answers
25 views

Excel formula return that pivot tables will handle like cleared cells? [migrated]

What combination of techniques with cell formulas and pivot table configuration will enable the drill-down into the pivot table to only show rows containing the 'desireable' valued cells, ignoring the ...
1
vote
2answers
38 views

turning table rows into columns in mysql

Say I have a database similar to the following: Table student_info: id name 111 jon 112 dan 113 david ... and table scores: item_id student_id score 01 111 37 02 ...
0
votes
1answer
45 views

VBA: lists group items of a PivotTable report

how can I get the list of grouped items in a pivot table with VBA ? For example, from ...
0
votes
0answers
48 views

Syntax error when using php to serve up dynamic sql pivot table

This dynamic pivot sql runs perfectly in MS Studio, however I can't get it to run with php on the server. I get Incorrect syntax near ','. And Incorrect syntax near 'p'. I've tried every type of ...
-1
votes
0answers
26 views

Which is the BEST Winforms Pivot Control? [closed]

I need to design an winforms application at work making use of a Pivot Grid control. The following are the contestants: Telerik PivotGrid ComponentOne OLAP for Winforms Active Analysis DevExpress ...
0
votes
1answer
26 views

Keeping filters in a pivot table in absence of data

Imagine I have a quality control in a factory retrieving the state of each product StateId 1 - Good 2 - Acceptable 3 - Subproduct 4 - waste My table 'StateIdHistory' gives me the state of each ...
0
votes
1answer
63 views

how to perform additional inner join on pivot table with laravel eloquent

I have four tables: foods: id, name users: id, name mealtypes: id, name food_user: id, food_id, user_id, mealtype_id foods and user have a many-to-many relationship mealtype has a one-to-one ...
0
votes
0answers
49 views

Excel Pivot Chart with a baseline

I have a number of data entries for the employees in my department, and I'm trying to set up a pivot table that would give me their average error rate in comparison to the average error rate of the ...
1
vote
0answers
24 views

Excel AddIn : Hide a datafield in a pivottable

I'm trying to control an Excel (2010) PivotTable from a VSTO (excel AddIn) in C# (4.0). I've got no problem adding PivotFields (Dimensions) and DataFields (Measures) to the PivotTable. The problem is ...
0
votes
0answers
59 views

Laravel 4 many to many relationship does not display the related data

I'm working with the following models: Game, User and Player where Player extends User. In this case Game and Player have a relationship of N:N and User extends Confide. So code stands like: ...
-3
votes
1answer
44 views

How to solve this with correct query in SQL Server 2008 [closed]

Here's a screenshot of the data. Here, I want to compare columns (Sal, TA, DA) in the basis of two different year (e.g. 2013 and 2014) with order by month...so that my output must be like ...
0
votes
0answers
67 views

VBA Macro- PivotTble Auto-Filter Combo-Box - CurretnPage Issue

I am creating a dashboard with multiple pivot tables and have run into a problem that I cant seem to overcome. I have a primary worksheet where all the data will be displayed with direct references to ...
1
vote
0answers
67 views

VBA to merge multiple pivot tables for multiple workbooks to create a master pivot table

I've found a code that I've (mostly) successfully modified for my use, but am getting an error on the grouping function. I have a folder that has (at present) 3 workbooks in them. Each workbook is ...
-2
votes
0answers
34 views

Create in Java-JSF a pivot table view [closed]

Need to set up a program in Java and JSF front-end which receives a result set from the database and generate as a result a vision of pivot-table. Records returned by result set in MySQL: id ...
0
votes
1answer
27 views

How to use UNPIVOT Convert Column to Row Sql Server?

I want query UNPIVOT Cnvert Column to Rows with SQL Server 2008 R2. But it's Error **Msg 170, Level 15, State 1, Line 16 Line 16: Incorrect syntax near 'unpivot'.** Code: SELECT EmpNo, CDate, ...
0
votes
0answers
28 views

Automated PivotTables from filter Excel VBA

Basically i have a macro for excel that creates a pivot table based on another worksheet in my workbook. This PivotTable includes a filter for Faculty. What i would like to do is create a macro that ...
0
votes
1answer
67 views

Multiple Relationships in Laravel Query Builder

I have an Event model and a method called getEvents() which gets a list of events from my events table in my database. Each event will in turn have delegates associated with it, and this is were it ...
1
vote
1answer
35 views

Excel PivotTable DataRange puzzle

I am running into a puzzle with Excel PivotTables and the DataRange behavior. It does not seem to work as expected when there are no Column fields. I want to select all the data cells associated with ...
0
votes
0answers
39 views

Date Filters and Group options do not appear

I am quite a new user, working on a pivot table with SQL Server Analysis Services on Windows Server 2003. I am unable to filter my reports by date despite having Googled many websites for advice. A ...
1
vote
1answer
47 views

TSql Complex Pivot

I have a table like this... LEVEL Action Date User -------------------------------------------------- 1 Approve 01/01/2013 User1 2 ...
0
votes
1answer
16 views

Current Session is no longer valid due to structural changes

We have a spreadsheet connected to a cube that is refreshed every two hours like this: Refresh data in the data warehouse Perform a "Process Full" on one of the many partitions in a duplicate of the ...
0
votes
1answer
124 views

Userform listbox filled with pivot table values - excel

I am trying to load a listbox with the rows from a pivot table field. I have found the following code that works for a ActiveX Control Listbox, but not for a UserForm Listbox. The UserForm control ...
1
vote
2answers
74 views

Drop set of columns with only null values from a table using SQL Server 2008

Take for example this example as an illustration so you can see what ÃŽ'm trying to do. This is how the final table of the pivoted information looks like. Create Table [#Comparative] ( Branch ...
1
vote
2answers
27 views

Pivot table - need to include blank values as null

I am attempting to use mySQL to change to modify (pivot) a table: WMU YEAR CPUE a 1987 22 a 1988 32 a 1989 2 a 1990 34 b 1988 ...
1
vote
2answers
60 views

PivotTable error 1004

Can anyone see why this code would cause a 1004 error on the last line? Everything works great up until that last line. I had it working, then it started getting this error and I can't figure out why. ...
1
vote
0answers
46 views

Correlation in Excel Pivot Table

I have a significant amount of data which I must analyse in Excel (this would be much easier in a DB, I realize). Each line item has a T/F indicator for it's membership in a given category and I would ...
0
votes
2answers
53 views

Excel Pivot Table - Averaging by Category

I'm trying to create an average by category in a pivot table. This is the first time I've created a pivot table so sorry if the answer is staring me in the face. My raw data looks like: Date, ...
0
votes
0answers
25 views

COMException 0x800A03EC Chart to Image

I'm creating a program that takes a chart from an excel worksheet and converts it into an image. I'm fine with getting the first chart, but when I try to get the 2nd chart, it gives me a COMException ...
0
votes
1answer
52 views

SQL Removing a filter from an unpivot table

I have this unpivot table and I wish to remove the filter that is applied to it. DECLARE @colsPivot AS NVARCHAR(MAX), @colsUnpivot as NVARCHAR(MAX), @query AS NVARCHAR(MAX) select ...
-1
votes
0answers
45 views

Pivoting Time and Attendance

I'm working on a TnA (Time and Attendance) query which allows input dates (from & to). The problem is that I'm getting duplicates when someone clocks in and out twice when pivoting. See picture. ...
0
votes
0answers
43 views

I am trying to combine datatables with the row grouping plugin, pivot.js, and sparklines

The need: Row level grouping that goes n-levels deep (eg greater than 3) Complex headers with hide and show functionality Summary rows for pivot (Row headers with sums, avg, ... ...
0
votes
1answer
129 views

refresh both the External data source and pivot tables together within a time schedule

In my last post Auto refresh pivottables data in excel on first run, i found that on my first execution the query from the External data source is refreshed and takes approximately 1 min to execute. ...
0
votes
1answer
97 views

VBA copy pivot table in the same sheet and use it

Hi I am copying a pivot table I have on the same sheet and I would like to use the copied pivot table by changing some items. The problem is when I copy pivot table, how do i identify the new pivot ...
0
votes
1answer
41 views

Pivot table deptno on columns and count and salary on rows?

Can anybody correct me how what I'm doing wrong pivoting the rows and columns? --Trying to count no. of employees in each dept and pivoting it as deptno on columns and counts of no. of employees -- ...
1
vote
1answer
59 views

How to use Sparse Columns in a Dynamic SQL script

I have used the below DYNAMIC SQL SCRIPT to convert a table like (1,AttributeName1,Attributevalue1) (1,AttributeName2,Attributevalue2) (2,AttributeName1,Attributevalue1) ...
0
votes
1answer
47 views

Combining data from 3 separate Spreadsheets in Excel

I'm trying to combine data from 3 separate spreadsheets: -All three sheets have a common column called "Tag" which has ID numbers -Sheet 1 contains the most info and will be used as the sheet where ...
1
vote
2answers
101 views

Auto refresh pivottables data in excel on first run

Background : I have 2 excel sheets: Contains pivot tables and a Macro "Refresh" Data from SQL server Macro contains VBA code for refreshing data and updating pivot tables automatically. The data ...
0
votes
0answers
24 views

Pivot Table for a Large Dataset

I have a dataset with about 1.5 million records. It does not fit into Excel. I have tried using MS Access to create a pivot table using PivotTable view but it keeps crashing. Does anyone know of a ...
1
vote
1answer
93 views

How to view a pivot table with actual column values like access in excel

I've tried searching this but couldn't find an answer because of the wording of the question. If it's been asked before please point me in the right direction. I have the same exact data in Excel and ...
1
vote
2answers
60 views

Filtering a PivotTable by Boolean

The source data for my Excel PivotTable looks like the following (this is a simplification): id name score 1 john 15 2 james 2 3 pat 14 4 jake 12 ... I have a PivotTable that uses this as a ...
0
votes
0answers
44 views

Create loop of Pivot Tables

I am trying to create a loop of Pivot Tables. So far, I am able to create 1 Pivot table, but the loop i am trying is not working. Could someone help me to correct the code? Probably I am using the ...
0
votes
0answers
67 views

vba error catching 1004 pivot field could not be found

I have a bunch of excel macros that take a csv table and produce pivot tables for reports. I was just wondering if anyone has a clever way of error handling when a field doesn't exist and tell the ...
2
votes
1answer
97 views

Pivot table group skips ranges

BACKGROUND: Excel pivot tables can group data into numerical ranges which you can then use as axis categories in a pivot chart. EXAMPLE: Excel might group a series of numbers from 1-30 into three ...
1
vote
2answers
133 views

Convert Rows to columns using 'Pivot' in mssql

Well I guess I am really dense. I have read the stuff on MS pivot tables and I am still having problems getting this correct. I have seen some of you that seem to eat and sleep this stuff, so I just ...
0
votes
1answer
83 views

application defined or object defined error when trying to pass an array

I am trying to pass an array to the pivot table fields, but on doing so excel throws a run time error:1004 error "Application defined or object defined error". Below is the piece of code I have ...

1 2 3 4 5 13