Hello everyone,
I am having trouble with one of the sheets at work that is created and maintained in quite a bad manner.
It contains multiline cells but not all lines are containing text, some are just plan char(10).
What I need is a way to count number of lines that are non-empty.
I can get number of total lines using
but I am stuck on how to continue...
I am having trouble with one of the sheets at work that is created and maintained in quite a bad manner.
It contains multiline cells but not all lines are containing text, some are just plan char(10).
What I need is a way to count number of lines that are non-empty.
I can get number of total lines using
Code:
=(LEN(A1)-LEN(SUBSTITUTE(A1,CHAR(10),"")))+1