第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 C# 中激活數(shù)據(jù)透視表總計(jì)的顯示詳細(xì)信息

在 C# 中激活數(shù)據(jù)透視表總計(jì)的顯示詳細(xì)信息

C#
至尊寶的傳說(shuō) 2022-11-22 16:39:07
我正在嘗試使用 C# 從 Excel 自動(dòng)創(chuàng)建數(shù)據(jù)透視表的“顯示詳細(xì)信息”using Excel = Microsoft.Office.Interop.Excel;我的代碼:var excelApp = new Excel.Application();excelApp.Visible = true;Excel.Workbook workbook = excelApp.Workbooks.Open(@"D:\path_to_excel_file.xlsm");Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets["Sheet_Name"];Excel.PivotTable pivot = worksheet.PivotTables("defined_pivot_table_name");pivot.DataBodyRange.ShowDetail = true;該代碼有效,但它僅顯示第一個(gè)“總計(jì)”值的詳細(xì)信息。但我想要的是獲得“總計(jì)”的“顯示詳細(xì)信息”。在這種情況下,對(duì)于這個(gè)數(shù)據(jù)透視表,它將創(chuàng)建一個(gè)包含 4 個(gè)元素的新工作表,但我想要的是總計(jì) (202)。我試過(guò)先選擇它,pivot.PivotSelect("Grand Total");但仍然沒(méi)有結(jié)果。我也檢查過(guò)pivot.RowGrand,pivot.ColumnGrand它們都返回 True。
查看完整描述

2 回答

?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個(gè)贊

如果您的數(shù)據(jù)透視表同時(shí)具有RowGrandAND ColumnGrand,那么它也有一個(gè)總計(jì)


if (pivot.RowGrand && pivot.ColumnGrand)

然后您可以使用數(shù)據(jù)透視表的最后一個(gè)單元格TableRange1生成詳細(xì)信息ShowDetail


int countRows = pivot.TableRange1.Rows.Count;

int countColumns = pivot.TableRange1.Columns.Count;

pivot.TableRange1.Cells[countRows, countColumns].ShowDetail = true;


查看完整回答
反對(duì) 回復(fù) 2022-11-22
?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個(gè)贊

也許可以幫助

// Access the pivot table by its name in the collection. 

PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];



// Access the pivot field by its name in the collection. 

PivotField field = pivotTable.Fields["Category"];



// Display multiple subtotals for the field.   

field.SetSubtotal(PivotSubtotalFunctions.Sum | PivotSubtotalFunctions.Average);


// Show all subtotals at the bottom of each group. 

pivotTable.Layout.ShowAllSubtotals(false);


// Hide grand totals for rows.

pivotTable.Layout.ShowRowGrandTotals = False


// Hide grand totals for columns.

pivotTable.Layout.ShowColumnGrandTotals = False


// custom label for grand totals

pivotTable.View.GrandTotalCaption = "Total Sales";


查看完整回答
反對(duì) 回復(fù) 2022-11-22
  • 2 回答
  • 0 關(guān)注
  • 125 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)