movefieldbefore
FIELD

The movefieldbefore statement moves the current field to a new position.


Parameters

This statement has one parameter:

field – is the name of the field you want to move the current field in front of, or "" to move the current field to the end (beyond the rightmost field).


Description

This statement moves the current field in front of the specified field. For example, suppose you have a Contact database with fields for Name, Address, City, State, Zip, Phone and Email. This example would move the Phone field in between the Name and Address fields.

field "Phone"
movefieldbefore "Address"

If you want to move the current field to the end of the database (beyond the rightmost field), specify "" for the before field. This example will move the Phone field after the Email field.

field "Phone"
movefieldbefore ""

See Also


History

VersionStatusNotes
10.0NewNew in this version.