Google 用于分隔列表中项目的工作表公式
Google Sheets Formula For Separating Items in a List
我正在寻求帮助,以在单元格 C1 中编写一个 Google 工作表公式,并在 A1:B1 中输入此范围:
A
B
122, 123, 124
Apple, Orange, Pear
并得到这个输出:
C
D
122
Apple, Orange, Pear
123
Apple, Orange, Pear
124
Apple, Orange, Pear
使用:
=INDEX(SPLIT(FLATTEN(SPLIT(A1, ",")&"×"&B1), "×"))
我正在寻求帮助,以在单元格 C1 中编写一个 Google 工作表公式,并在 A1:B1 中输入此范围:
A | B |
---|---|
122, 123, 124 | Apple, Orange, Pear |
并得到这个输出:
C | D |
---|---|
122 | Apple, Orange, Pear |
123 | Apple, Orange, Pear |
124 | Apple, Orange, Pear |
使用:
=INDEX(SPLIT(FLATTEN(SPLIT(A1, ",")&"×"&B1), "×"))