Not able to find unique values in excel

南笙酒味 提交于 2019-11-29 15:15:44

So if this is your data:

The formula used in E9:

{=SUM(--(FREQUENCY(IF((B2:B9>2)*(B2:B9<6)*(C2:C9>2016)*(C2:C9<2019),MATCH(A2:A9,A2:A9,0)),ROW(A2:A9)-ROW(A2)+1)>0))}

See here for more in depth explaination.

Another option would be to use a with

  • Year filtered as as >=2017

  • Name Values between 2 and 6

  • Which yields the following result:

  • and then we simply count unique values (excluding blank cells <>"")

Would say this formula is a bit more user-friendly and makes for a better visual representation of the data, but if you just want a formula, then absolutely go for @JvdV's solution :)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!