Hello excel experts,
Suppose I want to find if a list of number in a column is complete. I thank chandoo.org for teaching me this formula AND(COUNTIFS(A4:A11,ROW(INDIRECT("1:"&5)))=1). One can also use this formula to identify the missing number in the list: (LARGE(--ISNA(MATCH(ROW(INDIRECT("1:"&5)),A4:A11,0))*ROW(INDIRECT("1:"&5)),ROW(1:1))). It is also possible to hardcore the array.
However, while it is possible to identify if a list of text is complete by using the same approach, identifying the word which is missing has been tough. Someone has come up with this formula, but it is returning the first name in the list; not the missing name: =IFERROR(INDEX(SourceRange,SMALL(IF(ISNA(MATCH(SourceRange,RefRange,0)),ROW(SourceRange)-ROW(SourceRange)+1,99^99),ROW(1:1))),""). Any ideas please?
Suppose I want to find if a list of number in a column is complete. I thank chandoo.org for teaching me this formula AND(COUNTIFS(A4:A11,ROW(INDIRECT("1:"&5)))=1). One can also use this formula to identify the missing number in the list: (LARGE(--ISNA(MATCH(ROW(INDIRECT("1:"&5)),A4:A11,0))*ROW(INDIRECT("1:"&5)),ROW(1:1))). It is also possible to hardcore the array.
However, while it is possible to identify if a list of text is complete by using the same approach, identifying the word which is missing has been tough. Someone has come up with this formula, but it is returning the first name in the list; not the missing name: =IFERROR(INDEX(SourceRange,SMALL(IF(ISNA(MATCH(SourceRange,RefRange,0)),ROW(SourceRange)-ROW(SourceRange)+1,99^99),ROW(1:1))),""). Any ideas please?