
- DAX Functions Tutorial
- DAX Functions - Home
- DAX Functions - Introduction
- DAX Parameter Naming Conventions
- Description Structure
- DAX Functions - Aggregation
- DAX Functions - Filter
- DAX Functions - Time Intelligence
- DAX Functions - Date and Time
- DAX Functions - Information
- DAX Functions - Logical
- Math & Trigonometric Functions
- DAX Functions - Parent & Child
- DAX Functions - Statistical
- DAX Functions - Text
- DAX Functions - Other
- DAX Functions Useful Resources
- DAX Functions - Quick Guide
- DAX Functions - Useful Resources
- DAX Functions - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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