Power BI DAX UPPER function

The Power BI UPPER function is one of the DAX text functions useful to convert the lowercase string characters to uppercase. This article explains the DAX UPPER function that accepts the text and returns the uppercase characters and the syntax is as shown below:

UPPER(<text>)

Power BI DAX UPPER function Example

To demonstrate the DAX UPPER() function, click the New Column button in the Modeling Tab, and name it as UppercaseName. The below expression converts the lowercase characters in a FullName column in each row to uppercase.

Next, please add the UppercaseName column to the table report. Please refer to the String and the function article for the remaining Power BI methods. For more Charts >> Click Here.

UppercaseName = UPPER(EmployeeEmails[FullName])

Similarly, we have created one more column to convert the lowercase Profession columns to uppercase.

UpperProfession = UPPER(EmployeeEmails[Profession])
POWER BI DAX UPPER Function