在 Excel 2007 中有条件链接单元格
我的 Excel 电子表格中有一系列工作表。每个工作表都详细说明了一组需求,以及实现该需求所需的每个组件,分为以下几层:UI、后端、服务、数据库和杂项。
因此,像这样的列:
Req#, Description, UI, Hours, Backend, Hours, Services, Hours, Database, Hours, Misc, Hours
现在,我尝试有选择地获取其中一些数据并将其放入另一个工作表中,以具体详细说明给定层(例如数据库层)中必须完成的所有操作。
因此,我将仅选择数据库(和相关时间)列,并在这个新的“主数据库”工作表中链接到它们。我不知道如何在 Excel 中执行此操作。
不过为了进行比较,以下是我编写的 SQL 查询:
SELECT Database,DatabaseHours
FROM ReportsTable,FeedbackTable,AdminTable
WHERE Database IS NOT NULL;
我只是不知道如何在 Excel 中轻松建立这些关系。
I have a series of worksheets in an Excel spreadsheet. Each worksheet details a set of requirements, along with each component necessary to make that requirement happen, broken down into the following layers: UI, backend, services, database, and misc.
So columns like this:
Req#, Description, UI, Hours, Backend, Hours, Services, Hours, Database, Hours, Misc, Hours
Now I am trying to selectively take some of this data and place it into another worksheet to specifically detail what all has to be done in a given layer, for example the Database layer.
So I would select only the Database (and related hours) column, and link to them in this new "Master Database" worksheet. I don't know how to do this in Excel.
For comparison though, here's what I'd write as a SQL query:
SELECT Database,DatabaseHours
FROM ReportsTable,FeedbackTable,AdminTable
WHERE Database IS NOT NULL;
I just don't know how to make these relationships very easily in Excel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会考虑使用数据透视表。如果您将所有数据都保存在 Excel 工作表中,则在另一张工作表上创建数据透视表将允许您根据需要汇总数据。
I would look into using Pivot Tables. If you have all your data in an Excel sheet, creating a pivot table on another sheet will allow you to summarize data however you want.