英文:
How to split comma separated strings and remove duplicates
问题
我尝试从另一个标签页中获取一些调查答案。答案默认使用逗号分隔,我需要一个可以拆分范围并生成无重复项列表的公式。
这是我尝试做的事情的示例。
英文:
I'm trying to grab some survey answers from another tab.
The answers were provided with a comma by default separation between options, and I need a formula that splits ranges and results in a list with no duplicates.
Here is an example of what I'm trying to do.
答案1
得分: 0
使用以下公式:
=INDEX(UNIQUE(TRIM(FLATTEN(SPLIT(FILTER(B3:B9, B3:B9<>" "), ",")))))
如果你的另一个标签是 Sheet1
,那么使用 Sheet1!B3:B9
。
(根据你的范围和地区调整公式)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论