作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我按照这个线程上的说明进行操作:
How to Change Excel Power Query Paramaters with VBA
其中列出了用于更改 Power Query 参数的以下代码:
ThisWorkbook.Queries([ParameterName]).Formula = 'New code here
Source = Xml.Tables(Web.Contents("http://api.aceproject.com/?fct=getprojects&guid=" & GUID & "&Filtercompletedproject=False&projecttemplate=0&assignedonly=True")),
最佳答案
解决方案是使用双引号将文本值强制为公式:
ThisWorkbook.Queries("GUID").Formula = """dogs"""
Sub RefreshQuery_Click()
ThisWorkbook.Queries("GUID").Formula = """" & GUID & """"
End Sub
ThisWorkbook.Queries("GUID").Formula = """" & GUID & """" & " meta [IsParameterQuery=true, Type=""Text"", IsParameterQueryRequired=true]"
关于excel - 如何在不将值转换为公式的情况下更改 Power Query 中的参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56046013/
我是一名优秀的程序员,十分优秀!