Custom functions work much like calculations, but its important to understand the following aspects of custom functions:
For a review of calculation syntax, see Chapter 4 "Working with Calculations Primer." |
fnSalesCommission ( unitPrice; quantity; discount ) // function to calculate the sales commission for various transaction totals. // expected input: // unitPrice = dollar amount to two decimal places; // quantity = integer; // discount = any number (positive = discount) // expected result: a dollar amount. Let ([ salePrice = unitPrice * quantity; total = salePrice - discount; discountPenalty = Case ( discount > 0; .01; 0 ); commissionPercent = Evaluate ( "ProductRate::Commission" ) - discountPenalty ];// end variable declaration total * ( commissionPercent - discountPenalty ) )
If no exit condition exists or an error in logic occurs, the maximum number of recursions a function can make is 50,000 deep. If you create multiple branches of recursion, the most branches a custom function can perform is 10,000.
The following is an example of a simple recursive function that reorders a carriage returndelimited list from bottom to top:
fnListBackwards ( valueList ) // function to reverse-order a ¶-delimited list // expected input: // valuelist = text values delimited by ¶ // expected result: a valuelist of text values delimited by ¶ in reverse order Let ([ numOfValues = PatternCount ( valuelist; "¶" ); firstValue = LeftValues ( valuelist; 1 ) remainingList = RightValues ( valuelist; numOfValues - 1 ); resultList = Case ( numOfValues = 1; ""; fnListBackwards ( remainingList ) ); ];// end variables resultList & firstValue )
If you wish to create or set variables within a custom function, use the Let() function:
Let ([ myInternalVariable = $$globalVariable + 1; $$newVariable = 1 + 1; result = $$newVariable + myInternalVariable ]; // end variables result )
Custom functions are extremely powerful tools for building abstract units of logic that can then be reused throughout a solution. Indeed, once a custom function has been created (and tested!) its easy enough to recreate them in other files and use them throughout all your solutions. We strongly recommend you create a library of tools to refine and reuse over time. To that end, visit the next chapter for a selection of some of our favorites.
: FileMaker Specifications
FileMaker 8 Product Line
Specifications and Storage Limits
Field Types and Import/Export Formats
: Calculation Functions
Working with Calculations Primer
Calculation Signatures
Calculation Functions
: Custom Functions
Custom Functions Primer
Useful Custom Functions
: Script Steps
Scripting Primer
Script Step Reference
: Quick Reference
FileMaker Error Codes
FileMaker Keyboard Shortcuts
FileMaker Network Ports
FileMaker Server Command Line Reference
FileMaker XML Reference
: Other Resources
Where to Go for More Information