Microsoft のチュートリアル ページのサンプル VBA コードに基づいてサブルーチンを作成しました: LINK
Sub WIP20Pivot()
'
' Pivot Macro
'Creates a PivotTable report from the table on Sheet1
'by using the PivotTableWizard method with the PivotFields
'method to specify the fields in the PivotTable.
Dim objTable As PivotTable, objField As PivotField
' Select the sheet and first cell of the table that contains the data.
ActiveWorkbook.Sheets("DATA").Select
Range("A1").Select
' Create the PivotTable object based on the Employee data on Sheet1.
Set objTable = Sheet1.PivotTableWizard 'ERROR OCCURS HERE
ActiveSheet.Name = "PivotSheet"
'There is more VBA code below to select fields for the pivot table, etc..
End Sub
このコードを実行すると、次のエラーが表示されます。
実行時エラー '424': "オブジェクトが必要です"。
奇妙なのは、Microsoft のチュートリアル ページにあるダウンロード可能なサンプル マクロで、サブルーチンが完全に正常に動作することです。
助けてくれてありがとう!
ありがとう、アメ