DAX Text - UPPER function



Description

Converts a text string to all uppercase letters.

Syntax

UPPER (<text>) 

Parameters

Sr.No. Parameter & Description
1

text

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

Return Value

Same text string in upper case.

Remarks

The characters other than alphabets will not be changed.

Example

= UPPER("ab") returns AB. 
= UPPER("12ab") returns 12AB. 
dax_functions_text.htm
Advertisements