用于连接单元格的自定义函数和来自 Google 电子表格中相邻单元格的可选值?
A custom function for joining cells and an optional value from an adjacent cell in Google spreadsheets?
我有一个 sheet 看起来像这样:
--------------------------------------------------------------------------------
Item | Count |
-----------------------------------------------------------------------------------
Milk | 1 |
-----------------------------------------------------------------------------------
Cereal | 3 |
-------------------------------------------------------------------------------
Bread | 2 |
当我使用 JOIN 函数时,我会得到类似于 Milk, Cereal, Bread
的结果。我想要做的是添加计数列中的值,但前提是该值大于 1。因此自定义函数会打印类似 Milk, Cereal x3, Bread x2
我如何在 Google Spread[ 中实现此目的=19=]s?
尝试:
=ARRAYFORMULA(TEXTJOIN(", ", 1, IF(B2:B*1>1, A2:A&" x"&B2:B, A2:A)))
我有一个 sheet 看起来像这样:
--------------------------------------------------------------------------------
Item | Count |
-----------------------------------------------------------------------------------
Milk | 1 |
-----------------------------------------------------------------------------------
Cereal | 3 |
-------------------------------------------------------------------------------
Bread | 2 |
当我使用 JOIN 函数时,我会得到类似于 Milk, Cereal, Bread
的结果。我想要做的是添加计数列中的值,但前提是该值大于 1。因此自定义函数会打印类似 Milk, Cereal x3, Bread x2
我如何在 Google Spread[ 中实现此目的=19=]s?
尝试:
=ARRAYFORMULA(TEXTJOIN(", ", 1, IF(B2:B*1>1, A2:A&" x"&B2:B, A2:A)))