ReferenceExcel FormulasSupported FormulasLENOn this pageLEN The LEN function returns the number of characters in a text string. Syntax =LEN(text) Parameters text: The text whose length you want to find Examples =LEN("Hello") // Returns 5=LEN("") // Returns 0=LEN(" ") // Returns 1 (space counts as a character)