在Excel中添加零值的不存在的数字

时间:2017-02-21 11:15:02

标签: excel excel-formula office-2016

我在Excel中有很多顺序数据。

A列序列中缺少的数字应在B列中填充零值。 我可以使用什么公式?

excel表格中的数据如下:

AppUser.find({'applicationId' : '58abf9bdc3aa0f1b0b2e3c85'}).toArray(function(err, docs) {
     if(err) {
           console.log(err);
     }
     else {
           console.log(docs)
     }
})

预期产出:

 A  | B
 0  | 4
 1  | 6
 4  | 4
 6  | 7

1 个答案:

答案 0 :(得分:2)

在你的第二张桌子的B1

=IFERROR(VLOOKUP(A1,original_table,2,0),0)

然后向下拖动。将original_table替换为对第一个表格的引用