findbelow
CONDITION

The findbelow statement locates the next visible record (below the current record) in the active database for which the specified condition is true.


Parameters

This statement has one parameter:

condition – is a Boolean formula (a formula which results in a true or a false condition).


Description

This statement scans the active database down from the current record and locates the next visible record for which the specified condition is true.

This example makes the next visible record for John Smith the active record. Only records below the current record will be searched, records above will be ignored.

findbelow Customer = "John Smith"

See the Find statement for additional examples of how various find statements can be used. FindBelow is very similar to the Find statement, except that it only searches the portion of the database below the current record.

Note: The FindBelow statement is similar to the NextMatch statement. however, FindBelow allows you to specify a different search condition formula.


See Also


History

VersionStatusNotes
10.0NewNew in this version.