Last updated: August 26, 2026.
The StrConv function converts a string using a specified case, width, or character-set option.
Syntax
StrConv(string, conversion [, LCID])| Argument | Description |
|---|---|
string | Text to convert |
conversion | One or more compatible VbStrConv constants |
LCID | Optional locale identifier |
Examples
StrConv("webcheatsheet", vbUpperCase)
StrConv("WEB CHEAT SHEET", vbProperCase)
Normalized: StrConv([CustomerName], vbProperCase)Some conversion constants are available only for particular locales. Case conversion is not a substitute for locale-aware data validation.
See Microsoft’s Access function reference for related expression functions.