MS Access UCase() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MS Access UCase() Function

❮ MS Access Functions

Example

Convert the text in "CustomerName" to upper-case:

SELECT UCASE(CustomerName) AS UppercaseCustomerName
FROM Customers;
Try it Yourself »

Definition and Usage

The UCase() function converts a string to upper-case.

Syntax

UCase(text)

Parameter Values

Parameter Description
text Required. The string to convert to upper-case

Technical Details

Works in: Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

❮ MS Access Functions