Thanks for any input on this. I'm trying to make a simple pivot table that is taking data from sheet "5 Month Trending May 15" and putting it onto my Pivot Table sheet called "Errors By Criticality - Pivot".
When I try to set the pivot cache range with the create method it's returning a runtime error of type mismatch. I've checked the parameters and it looks like I'm setting it up correctly. I did try to specify the PivotTable version and was still getting the same error. My code is below.
I'm assuming it's something to do with the pvtCache variable or the way I'm setting it to the range but I can't figure any solutions out.
Sub PivotTableCode()
Dim pvtCache As PivotCache
Dim pvt As PivotTable
Dim pf As PivotField
Dim pi As PivotItem
'Set the cache of the pivot table
Sheets("5 Month Trending May 15").Select
Set pvtCache = ActiveWorkbook.PivotCaches.Create(xlDatabase, Range("A2:H38"))
'create the Pivot Table
Sheets("Errors by Criticality - Pivot").Select
Set pvt = ActiveSheet.PivotTables.Add(pvtCache, Range("AP2"), "MyPivotTable")
End Sub
The documentation for PivotCaches.Create indicates
Despite this, the macro recorder will always create a
String
here for theSourceData
. (It will even create a bad string if theSheet
has a space in the name).Given the preference for the macro recorder, I often supply this as a
String
with the addresses.I have been able before to supply a
Range
here so I am not certain what is specifically going on that prevents theRange
usage in this case.To use a
String
, your code would look like: