Ok, try this:
[tt]
Option Explicit
Sub test()
MsgBox "Multiply then Add 3 and 4:" & vbNewLine _
& "Mult: " & AnyFunction("Multiplyer", 3, 4) & vbNewLine _
& "Add.: " & AnyFunction("Adder", 3, 4)
End Sub
Function AnyFunction(f As String, A As Integer, B As Integer) As Integer
AnyFunction = Evaluate(f & "(" & A & "," & B & ")")
End Function
Function Multiplyer(A As Integer, B As Integer) As Integer
Multiplyer = A * B
End Function
Function Adder(A As Integer, B As Integer) As Integer
Adder = A + B
End Function
[/tt]