My question is closely related to the following topics:
- Excel: Find most frequent occurring value in a range?
- https://exceljet.net/formula/most-frequently-occurring-text
I want to retrieve the text that occurs the most frequent within my range. The problem is that the range consists of multiple rows and/or columns. In the case of a single row / single column, the Excel formula is
=INDEX(D2:D9,MODE(MATCH(D2:D9,D2:D9,0)))
I know that this formula is correct because I get "Inter" as output in cell N2. This is indeed the correct output if I want the most frequent term of Range("D2:D9").
However, I want to find the term #1 of Range("D2:E3"). Incorporating this range in the formula, gives an error. See attachment.
Summarized, what is the correct Excel-formula that shows me the most frequent text of a range that consists of multiple columns and rows? Thank you


