用于转换逗号分隔列值的 Excel 公式

发布于 2025-01-20 23:45:04 字数 347 浏览 0 评论 0原文

我有以下两列列表,其中包含 A 列中的视图名称和 B 列中以逗号分隔的表名称。

在此处输入图像描述

想要将其转换为以下格式:

在此处输入图像描述

I have the following list of two columns, which contains view names in column A and tables name seperated by comma in column B.

enter image description here

Want to convert the same in below format:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

洒一地阳光 2025-01-27 23:45:04

在 GS 中使用:

=ARRAYFORMULA(SUBSTITUTE(TRIM(SPLIT(SUBSTITUTE(FLATTEN(QUERY(QUERY(
 TRIM(SPLIT(FLATTEN(A1:A&"×"&SPLIT(B1:B, ",")), "×")), 
 "select max(Col1) where Col2 is not null group by Col1 pivot Col2"),,9^9)), 
 " ", "×", 1), "×")), " ", ", "))

在此处输入图像描述

in GS use:

=ARRAYFORMULA(SUBSTITUTE(TRIM(SPLIT(SUBSTITUTE(FLATTEN(QUERY(QUERY(
 TRIM(SPLIT(FLATTEN(A1:A&"×"&SPLIT(B1:B, ",")), "×")), 
 "select max(Col1) where Col2 is not null group by Col1 pivot Col2"),,9^9)), 
 " ", "×", 1), "×")), " ", ", "))

enter image description here

朦胧时间 2025-01-27 23:45:04

输入图片此处描述

仅适用于 Excel365

=TEXTJOIN(", ";TRUE;FILTER($A$1:$A$2;ISNUMBER(SEARCH(D6;$B$1:$B$2))))

enter image description here

Only with Excel365

=TEXTJOIN(", ";TRUE;FILTER($A$1:$A$2;ISNUMBER(SEARCH(D6;$B$1:$B$2))))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文