EXCEL:唯一字段,但排除包含单词“Total”的项目

huangapple go评论74阅读模式
英文:

EXCEL: Unique fields but exclude if it contains the word 'Total'

问题

以下是已经翻译好的部分:

UNIQUE(FILTER(A1:B6,A1<>"*Total*"))

表格:

Id name
A A
A A
A Total A
B B
B Total B

结果:

Id name
A A
B B
英文:

Looking to complete the following formula which allows me to find unique fields within column but not include any that have the word 'Total' in it.

I have the following formula but doesn't work
UNIQUE(FILTER(A1:B6,A1<>"*Total*"))

Table

Id name
A A
A A
A Total A
B B
B Total B

Result

Id name
A A
B B

答案1

得分: 3

尝试:

=UNIQUE(FILTER(A1:B6,NOT(ISNUMBER(SEARCH("Total",A1:A6)))))

结果:

EXCEL:唯一字段,但排除包含单词“Total”的项目

英文:

Try

=UNIQUE(FILTER(A1:B6,NOT(ISNUMBER(SEARCH("Total",A1:A6)))))

Result:

EXCEL:唯一字段,但排除包含单词“Total”的项目

huangapple
  • 本文由 发表于 2023年7月10日 18:05:00
  • 转载请务必保留本文链接:https://go.coder-hub.com/76652697.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定