多个数据透视表合并到另一个数据透视表

发布于 2024-08-24 21:23:16 字数 740 浏览 4 评论 0原文

我必须将 SQL Server 视图绘制到 2 个单独的工作表作为 Excel 2007 文件中的数据透视表。

工作表 1 上的结果包括示例数据:

- company_name, tickets, month, year
company1, 3, 1,2009 
company2, 4, 1,2009 
company3, 5, 1,2009 
company3, 2, 2,2009 

工作表 2 的结果包括示例数据:

company_name, month, year , fee 
company1,      1   ,  2009   ,  2.00 
company2,      1   ,  2009   ,  3.00 
company3,      1   ,  2009   ,  4.00 
company3,      2   ,  2009   ,  2.00 

我希望一个工作表的结果反映到另一个工作表及其相应公司的数据透视表上。

例如,在这种情况下:

- company_name, tickets, month, year, fee 
company1, 3, 1,2009 , 2
company2, 4, 1,2009 , 3
company3, 5, 1,2009 , 4
company3, 2, 2,2009 , 2 

有没有办法不用 vba 来做到这一点?

提前致谢

I have to SQL Server views being drawn to 2 seperate worksheets as pivot tables in an excel 2007 file.

the results on worksheet1 include example data:

- company_name, tickets, month, year
company1, 3, 1,2009 
company2, 4, 1,2009 
company3, 5, 1,2009 
company3, 2, 2,2009 

results from worksheet2 include example data:

company_name, month, year , fee 
company1,      1   ,  2009   ,  2.00 
company2,      1   ,  2009   ,  3.00 
company3,      1   ,  2009   ,  4.00 
company3,      2   ,  2009   ,  2.00 

I would like the results of one worksheet to be reflected onto the pivot table of another with their corresponding companies.

for example in this case:

- company_name, tickets, month, year, fee 
company1, 3, 1,2009 , 2
company2, 4, 1,2009 , 3
company3, 5, 1,2009 , 4
company3, 2, 2,2009 , 2 

Is there a way to do this without vba?

thanks in advance

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

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

发布评论

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

评论(1

半步萧音过轻尘 2024-08-31 21:23:16

想通了。您可以获取数据库中的 2 个视图或表,并使用 SQL 选项在连接属性下的定义选项卡中创建自定义 SQL 联接。然后,您可以使用此连接来创建数据透视表。

figured it out. You can take the 2 views or tables in the database and use the SQL option to create a custom sql join in the definition tab under connection properties. You can then use this connection to create a Pivot table.

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