showfieldsbetween
FROM
,
TO

The showfieldsbetween statement hides all fields except those in between specified numbers.


Parameters

This statement has two parameters:

from – First field to show. This can be a number (from 1 to max number of fields), or a field name.

to – Last field to show. This can be a number (from 1 to max number of fields), or a field name. The specified field must be to the right of the field specified by the from parameter.


Description

This statement shows only fields between specified columns, all others are hidden. For example, this statement shows only the first ten fields.

showfieldsbetween 1,10

This example shows only the last ten fields.

showfieldsbetween info("fieldcount")-10,info("fieldcount")

Either the starting or ending field can also be specified by name, like this:

showfieldsbetween "Name","Country"

See Also


History

VersionStatusNotes
10.0NewNew in this version.