Excel 2003 如何将参数传递给 SQL 存储过程(基于外部源的透视)?

发布于 2024-11-26 20:04:30 字数 192 浏览 0 评论 0原文

我创建了 Excel 2003 数据透视表,它使用外部源和 SQL 2008。

我在查询中写道:

exec mysproc '20110726', '20110727'

并且它工作正常。但是我需要能够传递从 Excel 单元格获取的日期。

最干净/最短的解决方案是什么?

I created Excel 2003 pivot table which uses External source and SQL 2008.

I wrote in the query:

exec mysproc '20110726', '20110727'

and it works fine. However I need to be able to pass the dates taken from Excel cells.

What is the cleanest/shortest solution?

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

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

发布评论

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

评论(1

☆獨立☆ 2024-12-03 20:04:30

找到了答案。添加了附加到以下子项的按钮:

Sub RefreshPivotQuery()

    Dim d1 As String
    Dim d2 As String

    d1 = Format(Sheets("Main").Range("Date1"), "yyyymmdd")
    d2 = Format(Sheets("Main").Range("Date2"), "yyyymmdd")

    Dim ws As Worksheet
    Set ws = Sheets("Pivot")

    ws.PivotTables(1).PivotCache.CommandText = "exec mysproc '" + d2 + "', '" + d1 + "'"

End Sub

Found the answer. Added button attached to the following sub:

Sub RefreshPivotQuery()

    Dim d1 As String
    Dim d2 As String

    d1 = Format(Sheets("Main").Range("Date1"), "yyyymmdd")
    d2 = Format(Sheets("Main").Range("Date2"), "yyyymmdd")

    Dim ws As Worksheet
    Set ws = Sheets("Pivot")

    ws.PivotTables(1).PivotCache.CommandText = "exec mysproc '" + d2 + "', '" + d1 + "'"

End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文