Browse VBA Content
VBA, return an array from a function
By: Mark Kiehl
'Return an array from a function.
Sub TestArrFn()
Dim lSize as Long, l as Long
lSize = UBound(arrList)
MsgBox "The ..
VBA String Functions
By: Roman Koch
'I found these string functions to be robust, bug free, and they handle every need not built into VBA.
Option ..
