Answers for "excel vba can a vba function return a range?"

VBA
3

excel vba can a vba function return a range?

'VBA functions can return an Excel range, but since a range
'is an object, the 'Set' keyword is required:

Function Test() As Range
    Set Test = [A1:Z99]
End Function
Posted by: Guest on May-02-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language