Last updated: August 26, 2026.
The UCase function converts letters in a string to uppercase.
Syntax
UCase(string)| Argument | Description |
|---|---|
string | Text expression to convert |
Examples
UCase("WebCheatSheet") ' WEBCHEATSHEET
UpperCode: UCase([ProductCode])
SafeValue: UCase(Nz([Code], ""))UCase returns Null for a Null value and follows the current locale’s casing rules.
See Microsoft’s Access function reference for related expression functions.