M
Micayla Bergen
help says i cant use the mode function on text in a table, is there an
equivalent function for text?
equivalent function for text?
Micayla Bergen said:help says i cant use the mode function on text in a table, is there an
equivalent function for text?
This is an array formula. Enter it with Control-Shift-Enter
Dave Peterson said:I used this:
=INDEX(A1:A20,MODE(MATCH(A1:A20&"",A1:A20&"",0)))
and if the most used "value" was blank, it returned a 0.
So I used this to hide that 0:
=INDEX(A1:A20&"",MODE(MATCH(A1:A20&"",A1:A20&"",0)))
Both seemed to work ok for me.
Jack said:Dave,
BTW, MODE works also for a matrix, not only for 1 row or 1 column. Why can
your function only be used for 1 row or 1 column? Is it possible to let it
work for say A1:B20?
Jack.