多个数据透视表合并到另一个数据透视表
我必须将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。您可以获取数据库中的 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.