Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read characters Count "Text Length" for Excel cell?

I want to read the count of characters for a cell and set it to another cell.

Could you please tell me what is the function "Formula" to do that?.

Thanks

like image 988
Wahid Bitar Avatar asked Dec 08 '22 05:12

Wahid Bitar


1 Answers

=LEN(A1)

Where A1 is the Cell whose text length you want.

like image 50
Ta01 Avatar answered Jan 04 '23 20:01

Ta01