excel - Find which rows has longest Cell in a given column? -


currently have function in vba finds longest cell length in given column. inserts column next whatever given column, inserts len(a1) (whatever desired column address is) , fills down, uses max function find greatest value.

until that's been enough user wants know row greatest value on well. there way without sorting or filtering?

the function run once user , loops across each column, , there 150000 rows, take while filter / sort 15 times.

any suggestions appreciated

=match(max(column),column,0) give row number max occurs.

you use

=index(othercolumn,match(max(column),column,0)) other column value row


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -