How can I determine the largest physical size cell in a column

C

csa001

Have a worksheet in which I need to know the largest size item in each
column, text coulmns only.
 
S

SteveG

Do you mean the highest number of characters?

Try,

=MAX(LEN(A1:A100))

This is an array formula so commit with Ctrl-Shift-Enter not jus
enter. It should look like this after commiting,

{=MAX(LEN(A1:A100))}


Does that help?

Stev
 
Top