Home > Community > Automation and VBA > Using multiple custom functions > Antwort auf: Using multiple custom functions

#9424
Bernhard KantzBernhard Kantz
Teilnehmer

If you remove the numbers after Calculate in the Implements directive and the function definition, your code should work.


Option Explicit
 
Implements ICustomFPScriptFunctionCalculate
 
Private Function ICustomFPScriptFunctionCalculate_Calculate(SafeArrayOfArguments() As Variant)
 
	ICustomFPScriptFunctionCalculate_Calculate = SafeArrayOfArguments()
 
End Function