我有四列结构如下:
Column A: Data title for metric.
Column B: Corresponding metric for data title in Column A.
Example:
Row 50 |BlahBlah | 5 |
Column C: Same as Column A from above.
Column D: Same as Column B from above.
Example:
Row 10 |BlahBlah | 10 |
我想要做的是制作第五列,列E
,我首先在列C的范围内查找列A的标题,如果此标题存在于列C的范围内,那么我想从D列中减去B列中的相应指标。
因此,在上面的示例中,我将列A,行50与列C,行10匹配,列E中的条目将为5
。
答案 0 :(得分:0)
也许:
=IFERROR(VLOOKUP(A2,C:D,2,0)-VLOOKUP(A2,A:B,2,0),"")
复制到西装。