我无法在任何地方找到答案,所以这里是:
我正在向客户发送调查,我有一张带有 A1 的表格:客户的电子邮件;B1:电子邮件工作与否;C1:评论
我有另一张表是不工作的客户的电子邮件: A1:客户的电子邮件;B1:评论
我想更新表 1,以便如果表 1 中的客户电子邮件也在表 2 中,则为它分配表 2 中的相应评论。
据我了解,vlookup 功能可以做到这一点,但我无法让它工作。
非常感谢,
担
If I understand correctly your problem, you must add a 4th column in your 1st table. This new column will display the comment from table 2. You could name it "Comments from table 2" for example. Type this formula in it:
=IF(ISNA(VLOOKUP(A2,Sheet2!A$2:B$999,2,FALSE)),"",VLOOKUP(A2,Sheet2!A$2:B$999,2,FALSE))
This is what I have, finally:
Sheet 1
| Email | Working | Comment | Comment from table 2 |
----------------------------------------------------
| Email1 | Yes | Good | |
----------------------------------------------------
| Email2 | No | Bad | Arghhhh |
----------------------------------------------------
Sheet 2
| Email | Comment |
--------------------
| Email2 | Arghhhh |
--------------------