Acos trig function
Hi Philosophaie,
If you are creating an User Defined Function where ACOS is part of the
VBA code try
Public Function MyFunc(aValue As Double)
Application.Volatile
MyFunc = Application.WorksheetFunction.Acos(aValue)
End Function
HTH,
Wouter
|