Category: Design
Syntax: ValueListItems ( fileName; valueListName ) |
Parameters:
fileNameA string or text expression that represents the name of an open file.
valueListThe name of a value list in fileName.
Data type returned: Text
Description:
Returns a carriage returndelimited list of the items in the specified value list.
The ValueListItems() function is often used to consolidate information about a set of related records. For instance, in an invoice file, you might have a value list called Products_Ordered thats defined to return the ProductName field from a related set of records in the InvoiceItem table. ValueListItems (Get (FileName); "Products_Ordered") would return a list of all the products ordered on the current invoice.
As with many design functions, we recommend against hard-coding specific text strings into calculations, but in this case it cannot be avoided. One practice we follow in our work is to name value lists that are referenced elsewhere by name with a suffix "DNR" for "do not rename." Another approach is to create a custom function that returns value list names and thus provides a single place to control edits.
Examples:
Function | Results |
---|---|
ValueListItems (Get (FileName); "Phone_Label") | Returns a list of values from the value list Phone_Label in the current file that might look like this: |
Home | |
Work | |
Cell | |
Fax |
: 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