TOP

Função VBA: UCase

Descrição

A função VBA do UCASE converte uma string de caracteres em maiúsculas.


Sintaxe UCase

UCase(texto)

Exemplo VBA UCase

Convertendo uma string para maiúscula:

Sub UCaseExample()
    
      text = "Ref-45-X-876-rt"
    
      text = UCase(text)
    
      MsgBox text 'Devoluções: REF-45-X-876-RT
    
End Sub
A função reversa que converte para minúsculas é a função LCASE.