DAX Text - LOWER function



Description

Converts all letters in a text string to lowercase.

Syntax

LOWER (<text>) 

Parameters

Sr.No. Parameter & Description
1

text

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

Return Value

Text in lowercase.

Remarks

Characters that are not letters will not be changed.

Example

= LOWER ("ABCDE") returns abcde. 
= LOWER ("123AB") returns 123ab. 
dax_functions_text.htm
Advertisements