Excel更新列,单元格值

时间:2013-02-15 17:30:49

标签: excel

所以这就是我想要做的事情:

1) Look-up A2 value in Column C.
2) The rows in Column C where A:2 value exists, then the respective cell in D will get the value
   of B.  If it does not exists then D will have a value of 0.

the formula im using in D2 is something like =LOOKUP(A2,C:C,REPLACE WITH B) and if not exists then b2 = 0

我可以使用匹配但不知道如何用正确的值替换

enter image description here

1 个答案:

答案 0 :(得分:1)

如果我理解输入正确 - 你需要从一定数字开始增加10的数字。有两种方法:

  1. 输入起始号,例如10000000中的A1。在A2中输入公式:=A1+10并自动填充(或只是复制并粘贴)所需的行数。
  2. 10000000放入A1,然后10000010放入A2,选择两个单元格并使用鼠标拖动右下方的选择角 - 这将产生递增的值。
  3. 希望这很有用。

    修改

    在聊天中讨论之后解决方案就是这个(假设上传的屏幕样本):

    1. 在A,B和C中用零添加当前数据上方的行。
    2. C列:C3中的1,C4中的=C3+10并自动填充,或者只是从1:1,11,21开始递增10 ......
    3. D栏中的D列:=VLOOKUP(B2,A:C,3,0)。这将从C列返回新生成的值,该值对应于相同行的A中的值,即D5为11,因为B5等于1100000000,这是A4,C4中对应11。 / LI>

      总而言之,它看起来像这样:

      Sample

      附上示例文件:https://www.dropbox.com/s/wlc70q92oefiewe/IDsGeneration.xlsx