TOP

Fonction VBA : UCase

Description

La fonction VBA d'UCASE convertit une chaîne de caractères en majuscules.


Syntaxe UCase

UCase(texte)

Exemple VBA UCase

Conversion d'une chaîne en majuscules :

Sub UCaseExample()
    
      text = "Ref-45-X-876-rt"
    
      text = UCase(text)
    
      MsgBox text 'Retours: REF-45-X-876-RT
    
End Sub
La fonction inverse qui convertit en minuscules est la fonction LCASE.