Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Functions and Maximum # of arguments

Status
Not open for further replies.

Zebadiah

Technical User
Apr 29, 2001
22
0
0
US
I've written a function that has 32 arguments (variables) and when insert the function into the excel cell for calculation, it gives me an undefined error and always highlights a cell reference in the function. Is there a maximum # of arguments that a function in VBA can handle?


Function Test(n1, n2, n3, ....n32)

End Function



in Cell
=Test(a1,a2, a3, ....a32)
gives an error


Any ideas?
 
OK an addition, the maximum number of variables that excel can handle as far as I can tell is 29. After that I get a #Value error.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top