带有 If 语句的 Google Sheet Array 公式

时间:2021-05-02 13:26:27

标签: google-sheets google-sheets-formula array-formulas

我正在尝试使用数组公式基于一列用另一张工作表中的数据填充一张工作表。

我的数据(简化示例)如下所示:

enter image description here

我知道我可以用这个公式将数据合并在一起。

=unique({(B6:D);(F6:H)})

但我只提取了第三列中有退款的行。

我做了一些谷歌搜索并设法想出了这个:

=unique({(if(D6:D='Refund',B6:D);(if(H6:D='Refund',F6:H)})))

但这行不通,我不知道该怎么做。 我看过一些提到使用过滤器功能的条目,但这对我也不起作用。

1 个答案:

答案 0 :(得分:0)

试试:

componentDidUpdate(prevProps) { if (this.props.id !== prevProps.id) { //API_Call(this.props.id) } }