Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This work to
Public Function testi(ArrayIn As Range) As Double testi= Application.IRR(ArrayIN, 0.1) End Function Regards Luis Fernando Ortiz Maldonado escribió en el mensaje oups.com... Here's a solution that I just stumbled upon that seems to work: Public Function testi(ArrayIn As Range) As Double testi = Application.WorksheetFunction.IRR(ArrayIn(), 0.1) End Function |