UCASE 的 VBA 函数将字符串转换为大写。
UCase(文本)
将字符串转换为大写:
Sub UCaseExample() text = "Ref-45-X-876-rt" text = UCase(text) MsgBox text '返回:REF-45-X-876-RT End Sub