Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Pivot Table - Changing Data....?

Hi guys...this might be a silly question....

I have my pivot table on sheet 1 and my data on sheet 2 in my
spreadsheet.

The data is quite large so if i wanted to look something up and change
it i thought i could use the pivot table to do this but it doesnt
change the data on sheet 2. Is this possible of would you need to
change the data on sheet 2 instead.

Thanks

Brian

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 268
Default Pivot Table - Changing Data....?

I've found that, from-time-to-time and for no apparent reason, a Pivot Table
will go 'out of sync' with reality. The easiest way of resolving this is to
set up the Pivot Table again.

Regards.

Bill Ridgeway
Computer Solutions

wrote in message
ps.com...
Hi guys...this might be a silly question....

I have my pivot table on sheet 1 and my data on sheet 2 in my
spreadsheet.

The data is quite large so if i wanted to look something up and change
it i thought i could use the pivot table to do this but it doesnt
change the data on sheet 2. Is this possible of would you need to
change the data on sheet 2 instead.

Thanks

Brian



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Pivot Table - Changing Data....?

Hi all,
is there any way to aumatically pivot table get refresh when the data
has a change in sheet 2 using vba
thanks in advance ,
prkn.


Debra Dalgleish wrote:
You need to change the data on sheet 2. If you make a change in the
pivot table, it won't affect the source data.

wrote:

I have my pivot table on sheet 1 and my data on sheet 2 in my
spreadsheet.

The data is quite large so if i wanted to look something up and change
it i thought i could use the pivot table to do this but it doesnt
change the data on sheet 2. Is this possible of would you need to
change the data on sheet 2 instead.



--
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,979
Default Pivot Table - Changing Data....?

You can use event programming to refresh the pivot table when the data
is changed or to refresh the pivot table when its worksheet is selected
(if it's on a different sheet than the data).

For example, with the pivot table on its own sheet, right-click that
sheet's sheet tab.
Choose View Code
Paste the following code where the cursor is flashing:

'==============
Private Sub Worksheet_Activate()
Dim pt As PivotTable
For Each pt In ActiveSheet.PivotTables
pt.PivotCache.Refresh
Next pt
'===================

Close the Visual Basic Editor and return to Excel
Update the data, then select the pivot table sheet, to see that it's
automatically updated.

prakash wrote:
Hi all,
is there any way to aumatically pivot table get refresh when the data
has a change in sheet 2 using vba
thanks in advance ,
prkn.


Debra Dalgleish wrote:

You need to change the data on sheet 2. If you make a change in the
pivot table, it won't affect the source data.

wrote:


I have my pivot table on sheet 1 and my data on sheet 2 in my
spreadsheet.

The data is quite large so if i wanted to look something up and change
it i thought i could use the pivot table to do this but it doesnt
change the data on sheet 2. Is this possible of would you need to
change the data on sheet 2 instead.



--
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html





--
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Report choosing a Pivot table data Krish Excel Worksheet Functions 1 August 16th 06 12:10 AM
Changing the data of a Pivot Table Bonbon Excel Discussion (Misc queries) 2 February 20th 06 04:37 PM
Pivot table format changes if value of source data is null Frustrated with formatting! Excel Discussion (Misc queries) 0 October 24th 05 01:16 AM
Pivot table formats text data with 2 decimals Don S Excel Discussion (Misc queries) 3 October 6th 05 12:45 AM
Pivot Table Data Filter Problem Pepikins Excel Discussion (Misc queries) 0 June 16th 05 09:12 AM


All times are GMT +1. The time now is 04:00 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"