Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel,microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Sandy,
I did what you suggested but it seems can't work. These two pivot table won't change to selected page as in another pivot table.Any other idea? "Sandy Mann" wrote in message ... I don't know if this is what you want but assuming that the first table is in Sheet 1 A1:G20 and the second one is in Sheet 2 then in the Sheet Module of sheet 1 enter: Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) If Intersect(Target, Range("A1:G20")) Is Nothing Then Exit Sub Here = Target.Address Call SelectIt(Here) End Sub and then in a General Module: Sub SelectIt(Here) Application.ScreenUpdating = False Sheets("Sheet2").Activate Range(Here).Select Sheets("Sheet1").Activate Application.ScreenUpdating = True End Sub If you want to immediately go to Sheet 2 then in the General Module use: Sub SelectIt(Here) Application.ScreenUpdating = False Sheets("Sheet2").Activate Range(Here).Select Beep Application.ScreenUpdating = True End Sub The Beep is just to alert you that the sheet has changed. -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "shiro" wrote in message ... I have two pivot table on a worksheet,I want to synchronize the page between them both.I mean, if user select page A in the first pivot table,auto matically the page selected on the second pivot table is A too.Is it possible? Hope somebody like to pint me to the right direction. Thank's in advance. Rgds, Shiro |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to create pivot table from existing pivot table in excel 2007 | Excel Discussion (Misc queries) | |||
Synchronize the Pivot table page field selection in 2 tables? | Excel Worksheet Functions | |||
How to Synchronize page fields for two or more than 2 pivot tables? | Excel Programming | |||
Synchronize Pivot table page fileter | Excel Discussion (Misc queries) | |||
Synchronize pivot tables | Excel Programming |