在 Excel 2007 中有条件链接单元格

发布于 2024-08-12 03:44:05 字数 543 浏览 2 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(1

分开我的手 2024-08-19 03:44:05

我会考虑使用数据透视表。如果您将所有数据都保存在 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.

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