Is it possible to invoke a function by specifying what the named parameters should be?
So for example if you have
Public function tmp(optional Byref a as integer=2, optional Byref b as integer=10)
Tmp=a*b
End function
I want to use the above by tmp(b=5). Hope someone can help.
tmp(b:=5)=tmp(,A2). If A2 value is 76, then the answer in B2 will be 152. And your arguments should beByVal.