我正在使用以下公式将数据从一个电子表格导入到另一个电子表格:
=IMPORTRANGE("URL", "Sheet1!N231")
在某些情况下,导入的范围为空白。我希望这些单元格在新电子表格中说“ TBC”,而不是保持空白。
我曾尝试使用ISBLANK
命令,但在语法上苦苦挣扎。
答案 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;
}