0
文書にpivot table
を挿入しようとしています。次のコードは、しかし、私はエラーを空白pivot table
がまだ作成され、スローされますがどこ/なぜそれが。(ライン内Set pCache
...ラインを、それを投げているかわからない、mismatch
エラーがスローされます。VBA:PivotCachesとタイプの不一致
どこ?!私は間違っています
pivot_lastRow = mainSheet.Cells(mainSheet.Rows.count, "A").End(xlUp).Row 'may need to change "A"
pivot_lastCol = mainSheet.Cells(1, mainSheet.Columns.count).End(xlToLeft).Column
Set pivotRange = mainSheet.Range(mainSheet.Cells(1, 1), mainSheet.Cells(pivot_lastRow, pivot_lastCol))
Set pCache = wbk.PivotCaches.Create(SourceType:=xlDatabase, _
SourceData:=pivotRange).CreatePivotTable(TableDestination:=pivotSheet.Cells(2, 2), _
TableName:="Test")
'pCache'の宣言は表示されませんでしたが、これが解決策になるはずです。 (Declarations 'pcacheとpTable'でも良いでしょう) –
これはそれです。お手伝いありがとう。 – Rivers31334
@ Rivers31334:うれしい! ;) – R3uK