How do I find the second most frequent value in Google sheet?

南笙酒味 提交于 2019-12-25 16:22:59

问题


I am using =MODE(B1:F85) to get the MODE, how do I get which is the second most frequent value after 10? Thanks


回答1:


This should return the second most frequent value:

=ArrayFormula(MODE(IF((B1:F85=MODE(B1:F85)),"",B1:F85)))


As an aside, I think the fact you need to use "" in the second argument, rather than omitting the argument altogether, is (in my opinion) a low-grade bug, which I will report. Nevertheless, the above formula should still work even if the behaviour was changed accordingly.



来源:https://stackoverflow.com/questions/26326857/how-do-i-find-the-second-most-frequent-value-in-google-sheet

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