Function Overloading in Excel VBA - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:40:56Zhttp://stackoverflow.com/feeds/question/64436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/64436/function-overloading-in-excel-vba5Function Overloading in Excel VBAPatrick A.2008-09-15T16:28:28Z2008-09-16T10:51:41Z
<p>I'm using Excel VBA to a write a UDF. I would like to overload my own UDF with a couple of different versions so that different arguments will call different functions. </p>
<p>As VBA doesn't seem to support this, could anyone suggest a good, non-messy way of achieving the same goal? Should I be using Optional arguments or is there a better way?</p>
<p>Thanks,
Patrick</p>
http://stackoverflow.com/questions/64436/function-overloading-in-excel-vba/64494#644940Answer by theo for Function Overloading in Excel VBAtheo2008-09-15T16:35:20Z2008-09-15T16:35:20Z<p>VBA is messy. I'm not sure there is an easy way to do fake overloads:</p>
<p>In the past I've either used lots of Optionals, or used varied functions. For instance </p>
<pre><code>Foo_DescriptiveName1()
Foo_DescriptiveName2()
</code></pre>
<p>I'd say go with Optional arguments that have sensible defaults unless the argument list is going to get stupid, then create separate functions to call for your cases.</p>
http://stackoverflow.com/questions/64436/function-overloading-in-excel-vba/65023#650230Answer by Jon Fournier for Function Overloading in Excel VBAJon Fournier2008-09-15T17:42:17Z2008-09-15T17:42:17Z<p>You mighta also want to consider using a variant data type for your arguments list and then figure out what's what type using the TypeOf statement, and then call the appropriate functions when you figure out what's what...</p>
http://stackoverflow.com/questions/64436/function-overloading-in-excel-vba/70526#7052611Answer by Joel Spolsky for Function Overloading in Excel VBAJoel Spolsky2008-09-16T08:59:22Z2008-09-16T08:59:22Z<p>Declare your arguments as <code>Optional Variants</code>, then you can test to see if they're missing using <code>IsMissing()</code> or check their type using <code>TypeName()</code>, as shown in the following example:</p>
<pre><code>Public Function Foo(Optional v As Variant) As Variant
If IsMissing(v) Then
Foo = "Missing argument"
ElseIf TypeName(v) = "String" Then
Foo = v & " plus one"
Else
Foo = v + 1
End If
End Function
</code></pre>
<p>This can be called from a worksheet as <strong>=FOO()</strong>, <strong>=FOO(<em>number</em>)</strong>, or <strong>=FOO("<em>string</em>")</strong>.</p>
http://stackoverflow.com/questions/64436/function-overloading-in-excel-vba/71162#711620Answer by Mike Woodhouse for Function Overloading in Excel VBAMike Woodhouse2008-09-16T10:51:41Z2008-09-16T10:51:41Z<p>If you can distinguish by parameter count, then something like this would work:</p>
<pre><code>Public Function Morph(ParamArray Args())
Select Case UBound(Args)
Case -1 '' nothing supplied
Morph = Morph_NoParams()
Case 0
Morph = Morph_One_Param(Args(0))
Case 1
Morph = Two_Param_Morph(Args(0), Args(1))
Case Else
Morph = CVErr(xlErrRef)
End Select
End Function
Private Function Morph_NoParams()
Morph_NoParams = "I'm parameterless"
End Function
Private Function Morph_One_Param(arg)
Morph_One_Param = "I has a parameter, it's " & arg
End Function
Private Function Two_Param_Morph(arg0, arg1)
Two_Param_Morph = "I is in 2-params and they is " & arg0 & "," & arg1
End Function
</code></pre>
<p>If the only way to distinguish the function is by types, then you're effectively gonig to have to do what C++ and other languages with overridden functions do, which is to call by signature. I'd suggest making the call look something like this:</p>
<pre><code>Public Function MorphBySig(ParamArray args())
Dim sig As String
Dim idx As Long
Dim MorphInstance As MorphClass
For idx = LBound(args) To UBound(args)
sig = sig & TypeName(args(idx))
Next
Set MorphInstance = New MorphClass
MorphBySig = CallByName(MorphInstance, "Morph_" & sig, VbMethod, args)
End Function
</code></pre>
<p>and creating class with a number of methods that match the signatures you expect. You'll probably need some error-handling though, and be warned that the types that are recognisable are limited: dates are TypeName Double, for example.</p>