Finding data within excluded or non-excluded rows

If your data contains excluded and non-excluded rows, you can limit the search for a string or numeric value to:
  • Only non-excluded rows (parameter NX), or
  • Only excluded rows (parameter EX or X)
For example, the following command finds the next non-excluded row containing the string SCARECROW in column number 1 or column number 7:
FIND SCARECROW (#1 #7) NX
And the following command finds the next excluded row containing the value 1024 in column number 3:
FIND 1024 #3 EX

Related references