Finding specific data
To find one or more occurrences of a character string in a selection list, you can use the FIND primary command, which you can abbreviate as F or /.
F APPLE
To find the next occurrence of the same string, use the RFIND command, or enter the FIND command with no argument. A message is displayed if the string cannot be found.
You can control the starting point, direction, and extent of the search with one of these optional parameters before or after the search string: NEXT, PREV, FIRST, LAST, ALL.
F ORANGE LAST
F LAST ORANGE
Related topics