One of the few instances in which you have no choice for using a Variant: : Variant « Data Type « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Data Type
- Variant
One of the few instances in which you have no choice for using a Variant:
Sub fewInstance()
Dim varArray As Variant
varArray = Array("Element1", 2, "Another string")
End Sub
Related examples in the same category