Vba Declare Variable With Value

[Solved] Vba Declare Variable With Value | Vb - Code Explorer | yomemimo.com
Question : vba declare variable with value

Answered by : vastemonde

Dim myString As String: myString = "aaa bbb"
Dim myStringCaps As String: myStringCaps = UCase("aaa bbb")
Dim myPart As Variant: myPart = Split(myString)
Dim ws As Worksheet: Set ws = ThisWorkbook.Worksheets(1)
Const MY_CONST As String = "Value"

Source : | Last Update : Fri, 29 Jan 21

Answers related to vba declare variable with value

Code Explorer Popular Question For Vb