在不产生运行时错误并且使用正确的数据生成透视表并将其放置在正确的位置的意义上,以下代码运行良好。
但是,项目列表已折叠。
部分代码包含在:
A)使用SHOWDETAIL = True
B)记录宏并“克隆”代码
For Each headerCell In wSh.Range("Ctl_Headers")
Set sceRange = wSh.Range(headerCell.Value)
sceRange.Activate
fRow = sceRange.Row
lRow = sceRange.Cells.SpecialCells(xlCellTypeLastCell).Row
fCol = sceRange.Column
lCol = fCol - 1 + sceRange.Columns.Count
Set pivCache = wBk.PivotCaches.Add(xlDatabase, wSh.Range(wSh.Cells(fRow, fCol), wSh.Cells(lRow, lCol)))
Set pivTable = wSh.PivotTables.Add(PivotCache:=pivCache, TableDestination:=wSh.Range(wSh.Cells(1, nrindex), wSh.Cells(1, nrindex)), TableName:="piv" & headerCell.Value)
pivTable.PivotFields(headerCell.Value).Orientation = xlRowField
pivTable.AddDataField pivTable.PivotFields(headerCell.Value), "Count " & headerCell.Value, xlCount
pivTable.PivotFields(headerCell.Value).ShowDetail = True
nrindex = nrindex + 4
Next headerCell
答案 0 :(得分:0)
您将pivTable.PivotFields(headerCell.Value)
用作RowField
,并将其计数用作DataField
。
您必须更改以下代码行才能解决行字段。
之前:
pivTable.PivotFields(headerCell.Value).ShowDetail = True
之后:
pivTable.RowFields(headerCell.Value).ShowDetail = True