このエラーの原因として、次のいずれかのことが考えられます。
Function MyFunction(A As Integer, B As Integer) As Integer
' ...
End Function
anInt% = MyFunction%(5) ' Illegal because MyFunction takes two arguments
関数呼び出しで足りない引数を提供してください。
Function MyFunction(A As Integer, B As Integer) As Integer
' ...
End Function
anInt% = MyFunction(,3) ' Illegal
カンマを削除するか、引数を指定してください。