Hi all,
Looking for a formula that will give me the result of the most common text within my dataset.
I currently have, for the first common text result the following formula :
tblMain[Placement Provider] holds all the text where I wish to find the recurring texts.
tblMain[Reporting Fin-Year] is the financial year of the and the basis of my first criteria range
RIGHT(E4,5) extracts the financial year in the format that is presented in tblMain[Reporting Fin-Year]
However, I am finding it extremely difficult to get the 2nd and 3rd (potentially 4th and 5th) most common texts. Especially with the blanks in tblMainPlacement Provider] and the criteria of the financial year.
Any and all help will be appreciated.
Looking for a formula that will give me the result of the most common text within my dataset.
I currently have, for the first common text result the following formula :
Excel Formula:
{=INDEX(tblMain[Placement Provider],MODE(IF(tblMain[Reporting Fin-Year]=RIGHT(E4,5),IF(tblMain[Placement Provider]<>"",MATCH(tblMain[Placement Provider],tblMain[Placement Provider],0)))))}
tblMain[Placement Provider] holds all the text where I wish to find the recurring texts.
tblMain[Reporting Fin-Year] is the financial year of the and the basis of my first criteria range
RIGHT(E4,5) extracts the financial year in the format that is presented in tblMain[Reporting Fin-Year]
However, I am finding it extremely difficult to get the 2nd and 3rd (potentially 4th and 5th) most common texts. Especially with the blanks in tblMainPlacement Provider] and the criteria of the financial year.
Any and all help will be appreciated.