【发布时间】:2019-03-12 09:30:00
【问题描述】:
我需要在 Excel 中编写一些函数,可以在 Excel 表中按组搜索不同的值。而且我找不到其他可以帮助我解决问题的类似问题。
例如:
Group1 0.3
Group1 0.3
Group1 0.2
Group1 0.3
Group1 0.3
Group1 0.3
Group2 0.5
Group2 0.5
Group2 0.5
Group2 0.5
Group2 0.5
Group2 0.5
其中 Group1 不完全相同,Group2 都为 0.5。我需要编写一些函数来查找和标记值不完全相同的组。我的预期结果是:
Group1 0.3 "Not all the same in this group"
Group1 0.3 "Not all the same in this group"
Group1 0.2 "Not all the same in this group"
Group1 0.3 "Not all the same in this group"
Group1 0.3 "Not all the same in this group"
Group1 0.3 "Not all the same in this group"
Group2 0.5 "Same"
Group2 0.5 "Same"
Group2 0.5 "Same"
Group2 0.5 "Same"
Group2 0.5 "Same"
Group2 0.5 "Same"
【问题讨论】:
标签: excel excel-formula