有没有办法在 Excel 中创建 RDBMS 行为以进行行列查找?
是否可以通过以下方法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用索引和匹配
来查找您的 ID 和代码在表 2 行标题和列标题中的位置。索引使用它们返回行和行的交集。柱子。
You can use Index and Match
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.
假设表 1 位于单元格 A1:B7 中,表 2 位于单元格 A10:E12 中,您可以将此公式放入 c2 中,然后将其复制到 c7 中。这是一个数组公式,所以输入后需要按ctrl-shift-enter。
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.