LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default PivotTable PageFields c# / api changes from Excel 2003 to Excel 20

I m trying to access the page fields of an Excel 2007 pivot table with a VSTO
addin written in c#

I m having the Exception ("Exception from HRESULT: 0x800A03EC") when I try
to display the CurrentPageName, here is the snippet code I m using:

<code
try
{
Excel.PivotFields pFields =
(Excel.PivotFields)cell.PivotTable.get_PageFields( System.Reflection.Missing.Value);

int count = pFields.Count;
for (int i = 1; i <= count; i++)
{
Excel.PivotField pf =
(Excel.PivotField)cell.PivotTable.get_PageFields(( object)i);
String s = pf.CurrentPageName;
MessageBox.Show(s);
}
}
catch(Exception e)
{

}
</code

I m having an issue with Excel 2007, however evrything is ok when I run this
for Excel 2003.

did the api of the pivot table changed from 2003 to 2007 ?

did someone succeeded in getting the page fields froma pivot table in excel
2007 ?
 
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
2007 / 2003 Pivottable Macro jxbeeman Excel Discussion (Misc queries) 0 July 21st 09 08:51 PM
error 1004 when setting pivottable.pagefields Amedee Van Gasse Excel Discussion (Misc queries) 0 September 24th 08 01:39 PM
problem with pivotTable in Excel [email protected] Excel Discussion (Misc queries) 1 June 4th 08 02:36 PM
Excel 2007/2003 Pivottable compatibility Michael Anderson Excel Discussion (Misc queries) 0 February 21st 08 02:55 AM
Pivottable feature(?) in Excel 2003 SP-1 Greg Goodman Excel Discussion (Misc queries) 10 July 31st 06 01:20 PM


All times are GMT +1. The time now is 01:54 PM.

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

About Us

"It's about Microsoft Excel"