QUERY.FIND_LAST Function
Syntax
as P = .FIND_LAST()
Description
The .FIND_LAST() method returns the last key value.
Example
dim tbl as P dim qry as P tbl = table.open("test") query.filter = "ID <> ''" query.options = "" qry = tbl.query_create() ? qry.find_last() = Key = "11112-02" Record = 6
See Also