IMPORTRANGE单元格为空时,用替代文本填充单元格

时间:2019-06-18 18:12:06

标签: if-statement google-sheets google-sheets-formula importrange

我正在使用以下公式将数据从一个电子表格导入到另一个电子表格:

=IMPORTRANGE("URL", "Sheet1!N231")

在某些情况下,导入的范围为空白。我希望这些单元格在新电子表格中说“ TBC”,而不是保持空白。

我曾尝试使用ISBLANK命令,但在语法上苦苦挣扎。

1 个答案:

答案 0 :(得分:1)

尝试这样:

getProducts(supplierid): Observable<Product[]> {
    this.productCollection = this.afs.collection<Product>('products', ref => ref.where('supplierId', '==', supplierid));
    this.products = this.productCollection.snapshotChanges().pipe(
      map(actions => {
        return actions.map(a => {
          const data = a.payload.doc.data();
          const id = a.payload.doc.id;
          return { id, ...data };
        });
      })
    );

    return this.products;

  }