Returns the contents of a list of fields, recursive function.
Sample Input:
cfGetData ( "Date" "Test" "Score" )
Sample Output:
2/10/2006 ABC 92
Description:
This is a recursive function designed to return the data from a paragraph delimited list of fields, thus reduce the need to 'hard code' report layouts.
The need for the function arose from a requirement to have an extremely flexible report layout. The calculation field, using the function, was placed on the layout extending the full width of the report. Tab delimiting controls display of the data within the field.
The 'field' parameter of the function is most often a global that is set by a script which identifies the field names required for a report. cfGetData then displays the data from each field named in the global in tab delimited order.
The cfGetData function uses cfTab -- which is a custom function producing the tab character. (I have uploaded this function as well and given attribution to the source where I first learned about it: Love, Lane & Bowers " FileMaker 8 Functions & Scripts Desk Reference".)
Depending upon the field type of both the global parameter field and the calculation using the function, various types of data can be displayed. The sample shows a mix of date, text, and number; the calculation field type is text.
This function is also useful for displaying summary data when you don't want to 'hard code' the summary field names by placing them on the layout.
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
Instant Messaging for your FileMaker Pro network. Click
here.
Custom Function Authors:
Link to all of your own custom functions on this site with the following URL:
http://www.briandunning.com/filemaker-custom-functions/results.php?author=Your
Name Here