LEN Function (DAX)

Returns the number of characters in a text string.

LEN(<text>)

Parameters

Term

Definition

text

The text whose length you want to find, or a column that contains text. Spaces count as characters.

Property Value/Return Value

A number indicating the number of characters in the text string. (I8)

Remarks

Whereas Microsoft Excel has different functions for working with single-byte and double-byte character languages, PowerPivot for Excel uses Unicode and stores all characters with the same length.

Therefore, LEN always counts each character as 1, no matter what the default language setting is.

If you use LEN with a column that contains non-text values, such as dates or Booleans, the function implicitly casts the value to text, using the current column format.

Example

The following formula sums the lengths of addresses in the columns, [AddressLine1] and [AddressLine2].

=LEN([AddressLine1])+LEN([AddressLine2)

See Also

Other Resources

Text Functions (DAX)