LOWER Function (DAX)

 

Converts all letters in a text string to lowercase.

LOWER(<text>)  

Parameters

TermDefinition
textThe text you want to convert to lowercase, or a reference to a column that contains text.

Text in lowercase.

Characters that are not letters are not changed. For example, the formula =LOWER("123ABC") returns 123abc.

The following formula gets each row in the column, [ProductCode], and converts the value to all lowercase. Numbers in the column are not affected.

=LOWER('New Products'[ProductCode])  

Text Functions (DAX)

Community Additions

ADD
Show: