有没有办法在 Excel 中创建 RDBMS 行为以进行行列查找?

发布于 2024-12-07 18:26:22 字数 935 浏览 3 评论 0原文

是否可以通过以下方法在 Excel 中查找值:

表 1

ID    |     Code
-----------------
1     |      I
1     |      J
1     |      K
2     |      I
2     |      J
2     |      L

表 2

ID    |    I      |    J    |    K    |    L    
----------------------------------------------
1     |   14.40   |  12.33  |  9.21   |  
2     |   13.99   |  11.28  |         |   32.33

查找是将表 2 中的列值添加到表 1 中的表“代码”旁边。因此表 1 将更改为:

表 1

ID    |  Code  |  Amount
-------------------------
1     |   I    |   14.40
1     |   J    |   12.33
1     |   K    |   9.21 
1     |   L    |   
2     |   I    |   13.99
2     |   J    |   11.28
2     |   K    |   
2     |   L    |   32.33

As提醒一下,这是一个在 Microsoft Excel 2003 中运行的项目。

更新

我相信我可以在第一列上使用 vlookup,并且考虑到我知道代码字段的位置,我可以走这条路线,但是问题我无法在整个列中复制并粘贴此公式,因为代码可能出现的顺序可能会有所不同(并且 ID 之间的顺序不同)。

Is it possible to lookup values in excel in the following method:

Table 1

ID    |     Code
-----------------
1     |      I
1     |      J
1     |      K
2     |      I
2     |      J
2     |      L

Table 2

ID    |    I      |    J    |    K    |    L    
----------------------------------------------
1     |   14.40   |  12.33  |  9.21   |  
2     |   13.99   |  11.28  |         |   32.33

The lookup would be to add the column values in table 2 next to the table 'code' in table 1. So table 1 would change to:

Table 1

ID    |  Code  |  Amount
-------------------------
1     |   I    |   14.40
1     |   J    |   12.33
1     |   K    |   9.21 
1     |   L    |   
2     |   I    |   13.99
2     |   J    |   11.28
2     |   K    |   
2     |   L    |   32.33

As a reminder, this is a project being run in Microsoft Excel 2003.

Update

I believe I can use a vlookup on the first column and given I know the placement of the code fields, I could go this route but the issue would be I cannot copy and paste this formula across an entire column because the order of which codes may appear can vary (and are not the same from ID to ID).

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

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

发布评论

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

评论(2

回忆追雨的时光 2024-12-14 18:26:22

您可以使用索引和匹配

=INDEX($C$4:$E$6,MATCH(H3,$B$4:$B$6,0),MATCH(I3,$C$3:$E$3,0))

来查找您的 ID 和代码在表 2 行标题和列标题中的位置。索引使用它们返回行和行的交集。柱子。

You can use Index and Match

=INDEX($C$4:$E$6,MATCH(H3,$B$4:$B$6,0),MATCH(I3,$C$3:$E$3,0))

Match finds the position of your ID and code in the Table 2 row and column headers. Index uses those to return the intersection of the row & column.

小红帽 2024-12-14 18:26:22

假设表 1 位于单元格 A1:B7 中,表 2 位于单元格 A10:E12 中,您可以将此公式放入 c2 中,然后将其复制到 c7 中。这是一个数组公式,所以输入后需要按ctrl-shift-enter。

=SUM(IF($A$11:$A$12=A2,IF($B$10:$E$10=B2,$B$11:$E$12,0)))

Assuming table 1 is in cells A1:B7 and table 2 is in A10:E12, you can put this formula in c2 and copy it down to c7. It's an array formula, so you need to press ctrl-shift-enter after you enter it.

=SUM(IF($A$11:$A$12=A2,IF($B$10:$E$10=B2,$B$11:$E$12,0)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文