我们可以在Microsoft Excel中使用什么公式来获取字符串列A和字符串C列中值总和的结果(如果它们相同)? B列和D列都是分配给其各自列的数字,即A列和C列。例如,“orange”为A列保留值6(在B列中),而在C列中为“orange”保留值2(在D栏中)。对于字符串'Orange'(E列),最终结果应显示6 + 2 = 8(在F列中)的总和。
谢谢 卢佩
答案 0 :(得分:0)
如果你有这张表:
A B C D orange 1 orange 6 apple 2 apple 7 grapes 3 carrot 8 carrot 4 melon 9
并且您希望在C列中搜索每个A列值,您应该在E列中使用它:(对于E2,然后向下拖动)
=IFERROR($B2+VLOOKUP($A2,$C$2:$D$5,2,FALSE), 0)
确保将$ C $ 2:$ D $ 5更改为您的范围(两个地方)。
A B C D E orange 1 orange 6 7 apple 2 apple 7 9 grapes 3 carrot 8 0 carrot 4 melon 9 12