Description:
This function converts the input string to Upper case.
Format:
UCase(strString)
Arguments:
- strString
- Mandatory
- Type: String
- String whose characters to be converted in Upper case.
Function FnUpperCase() Dim mainString mainString = "SumitJain" MsgBox UCase(mainString) End Function
Also Read About Other String() Functions
INSTR() | InstrREV() | LCase()
Happy Macroing
![]()
Sumit Jain