更改 Excel Web 查询的 URL

发布于 2024-11-09 04:23:20 字数 270 浏览 0 评论 0原文

我有一个 Excel 2010 电子表格,它从数据连接获取信息。连接属性上有“连接字符串”,它是一个带有多个参数的 URL,这些参数在查询字符串中传递到服务器。如果单击“编辑查询”,您可以更改 URL,然后根据新 URL 导入新数据。我需要通过 VBA 来完成此操作。

假设连接字符串当前为 http://myserver.com?name=foo 我需要将其更改为 http://myserver.com?name=bar

如何做到这一点?

I have an Excel 2010 spreadsheet that gets information from a data connection. On the properties of the connection is the "connection string" which is a URL with several parameters that are passed to the server in the query string. If you click "edit query" you can change the URL and then import new data based on the new URL. I need to do this via VBA.

Let's say the connection string is currently http://myserver.com?name=foo
I need to change that to http://myserver.com?name=bar

How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿光 2024-11-16 04:23:20
With ActiveSheet.QueryTables(1)
    .Connection = "URL;" & NewURL
    .Refresh
End With
With ActiveSheet.QueryTables(1)
    .Connection = "URL;" & NewURL
    .Refresh
End With
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文