I have the following function call:<br><br>Set rsWorksheetInformation = RunSPReturnRS(strStoredProcedure, _<br> Array("@RGN", adInteger, 3, 2), _<br> Array("@CAT", adInteger, 3, 65))<br><br>And the following function:<br><br>Function RunSPReturnRS(ByVal strSP, params())<br><br> ...<br> ...<br><br>End Function<br><br>I get the following error message on the line where the function call is:<br><br>Wrong number of arguments or invalid property assignment.<br><br>What am I doing wrong?<br><br>Thanks in advance for any help.<br><br>Paula