gpt4 book ai didi

vba - 设置数据透视缓存时类型不匹配

转载 作者:行者123 更新时间:2023-12-02 16:44:00 28 4
gpt4 key购买 nike

我有 pCach 作为 PivotCache

当我刚做的时候

ThisWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:=pTRng).CreatePivotTable(TableDestination:= _
wOPT.Cells(3, 1), TableName:="PivotTable2")

它按预期工作并在目标单元格上插入数据透视缓存

但是当我尝试这样做时,它给了我类型不匹配错误?

 Set pCach = ThisWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:=pTRng).CreatePivotTable(TableDestination:= _
wOPT.Cells(3, 1), TableName:="PivotTable2")

最佳答案

尝试将 PivotCachePivotTable 设置为 2 个单独的代码行,如下面的代码所示:

Dim pTbl  As PivotTable
Dim pCach As PivotCache

' set the Pivot Cache
Set pCach = ThisWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:=pTRng)

' create a new Pivot Table in "wOPT" sheet, start from Cell A3
Set pTbl = wOPT.PivotTables.Add(PivotCache:=pCach, TableDestination:=wOPT.Range("A3"), TableName:="PivotTable2")

关于vba - 设置数据透视缓存时类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41591111/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com