Hi,
I want to find the most frequent occurring text in a column with multiple criteria. I know how to do this for simple criteria, but when I have to use the date criteria it gets complicated.
This is working for these two criteria that I implemented.
=INDEX(All!$G$2:$G$119285,MODE(IF(All!$F$2:$F$119285 = Analysis!A4,IF(All!$AO$2:$AO$119285 = Analysis!$A$2,MATCH(All!$G$2:$G$119285,All!$G$2:$G$119285,0)))))
This is the formula that I use for finding the most occurring text in a column, with the date range as criteria:
=INDEX(All!$G$2:$G$119285, MATCH(MODE.SNGL(IF((All!$AY$2:$AY$119285<=$A$12)*(All!$AY$2:$AY$119285>=$A$11), COUNTIF(All!$G$2:$G$119285, "<"&All!$G$2:$G$119285), "")), COUNTIF(All!$G$2:$G$119285, "<"&All!$G$2:$G$119285),0))
Both of them are working fine, but I have trouble "combining" these two.
Any help would be appreciated.
Thank you!
I want to find the most frequent occurring text in a column with multiple criteria. I know how to do this for simple criteria, but when I have to use the date criteria it gets complicated.
This is working for these two criteria that I implemented.
=INDEX(All!$G$2:$G$119285,MODE(IF(All!$F$2:$F$119285 = Analysis!A4,IF(All!$AO$2:$AO$119285 = Analysis!$A$2,MATCH(All!$G$2:$G$119285,All!$G$2:$G$119285,0)))))
This is the formula that I use for finding the most occurring text in a column, with the date range as criteria:
=INDEX(All!$G$2:$G$119285, MATCH(MODE.SNGL(IF((All!$AY$2:$AY$119285<=$A$12)*(All!$AY$2:$AY$119285>=$A$11), COUNTIF(All!$G$2:$G$119285, "<"&All!$G$2:$G$119285), "")), COUNTIF(All!$G$2:$G$119285, "<"&All!$G$2:$G$119285),0))
Both of them are working fine, but I have trouble "combining" these two.
Any help would be appreciated.
Thank you!