gpt4 book ai didi

vba - 从 PowerPivot PivotItem 解析值的好方法?

转载 作者:行者123 更新时间:2023-12-03 02:39:38 24 4
gpt4 key购买 nike

我有一个具有以下 .name.value 属性的 PivotItem:

[dimCalendar].[MonthName].&[April 2013]

我只对2013 年 4 月 部分感兴趣。

解析或以其他方式从 PivotItem 获取此值的好方法是什么?

最佳答案

解决方案一:拆分并替换

Split 最好使用 [ 作为分隔符。获取 Split 数组的上限,并将结尾的 ] 替换为 ""

解决方案二:正则表达式

添加 Microsoft VBregularexpression 5.5 作为引用。

Private Function Method(str As String) As String
Dim regexp As New regexp
regexp.Pattern = "\[.*\]\[.*\]\[(.*)\]"
Method = regexp.Replace(str, "$1")
End Function

关于vba - 从 PowerPivot PivotItem 解析值的好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33959509/

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