Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can anyone help me?
This line of code bring up the message when run "sub or function not defined" and highlights the acos in the code. Cells(i, 2) = Cos([L2] * Acos(Cells(i - 1, 2) / Radical)) I've tried alot- can you help me? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Steven,
Acos is an xl Worksheet function, not a VB math Method and should me addressed as WorksheetFunction.Acos(Cells(i-1,2)/Radical ). That might be the problem. Ken Johnson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Steven,
ACOS is an Excel worksheet function, so try changing Acos to Application.ACOS --- Regards, Norman "Steven" wrote in message .com... Can anyone help me? This line of code bring up the message when run "sub or function not defined" and highlights the acos in the code. Cells(i, 2) = Cos([L2] * Acos(Cells(i - 1, 2) / Radical)) I've tried alot- can you help me? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
VBA's help also shows this as a derived math function:
Inverse Cosine Arccos(X) = Atn(-X / Sqr(-X * X + 1)) + 2 * Atn(1) Steven wrote: Can anyone help me? This line of code bring up the message when run "sub or function not defined" and highlights the acos in the code. Cells(i, 2) = Cos([L2] * Acos(Cells(i - 1, 2) / Radical)) I've tried alot- can you help me? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run-time error '50290': Application-defined or object-defined erro | Excel Discussion (Misc queries) | |||
Application-Defined or Object-Defined Error on simple code | Excel Programming | |||
Application-Defined or Object-Defined Error on simple code | Excel Programming | |||
Application-defined or object-defined error - missing the basics | Excel Programming | |||
User Defined Fuction Returning Range Help | Excel Programming |