User-Defined Functions problem (arguments do not show up in Excel Menu)

pecosvil

Board Regular
Joined
Apr 13, 2010
Messages
52
Hi everyone!
I am using Excel 2010.
I just created several UDF. One of them (named fc3), however, is not working properly.
Basically it has 18 arguments. When I go to Excel spreadsheet I do the following:
Formulas > Insert function > then select User Defined > select the function.

Then it opens a window where you just input the different arguments. In the case of this problematic function fc3, there appears only one slot for arguments, and it has no name. Anyone has any idea of what could be happening??

Many thanks in advance!
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
It might be caused by the fact that FC3 is a cell in any Excel worksheet. It is not advised to take function names that are cell addresses in a sheet.
 
Upvote 0
no, actually the name is not fc3, i just made it up for the question.
the name is "payment_customized"
 
Upvote 0
What is the VBA code for that payment_customized function?
 
Upvote 0
it's super long. basically a bunch of IF statements that take into account loan characteristics. Just to give you an idea, the first line is

Public Function Payment_Customized(loan_number As Integer, loan_amount As Double, maturity_date As Date, next_principal_payment_date As Date, next_principal_payment_period As Integer, payment_type As String, principal_payment_frequency As String, interest_rate_type As String, fixed_rate As Double, number_of_payments As Integer, principal_payment_annuity_payment As Double, period_cashflow As Integer, date_cashflow As Date, date_prepayment As Date, period_prepayment As Integer, amount_prepayment_OC As Double, maturity_period As Integer)

'then it follows a lot of if statements, and then the function ends with an
End Function


What strikes me is that the arguments do not appear in the Excel Insert Function menu.... so I can't even start running the function to debug it...
 
Upvote 0
What strikes me is that the arguments do not appear in the Excel Insert Function menu.... so I can't even start running the function to debug it...

Why not? There is Debug.Print to output to the immediate window, or very easy to do:

Code:
Sub testing()

    MsgBox Payment_Customized(...) 'provide values for each argument

End Sub

Then hit F8 and step through the code.

Wigi
 
Upvote 0
What strikes me is that the arguments do not appear in the Excel Insert Function menu

With only (sic) the first 13 arguments, it will work. 18 will be too much.
 
Upvote 0
so is there a limit on the amount of arguments that can be passed to a user-defined function? i couldn't find any documentation on that...
 
Upvote 0
Apparently, for the dialog screen "Insert function" it is...

But this will be a limit on the number of characters (argument names' length).
I bet that if you use shorter argument names it will work...
 
Upvote 0
you are right. i changed the function to

Public Function pp_cstmzd(arg1 As Integer, arg2 As Double, arg3 As Date, arg4 As Date, arg5 As Integer, arg6 As String, arg7 As String, arg8 As String, arg9 As Double, arg10 As Integer, arg11 As Double, arg12 As Integer, arg13 As Date, arg14 As Date, arg15 As Integer, arg16 As Double, arg17 As Integer)


and it works. wonder why that happens. do you know any easy way of writing a description for each of the arguments? i need users to be able to easily select the relevant cells in the worksheet to pass the correct argument....


many thanks!!!!
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,575
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top