Indexing on a subset of rows for dBASE tables
In most cases, indexes include all rows in a table. For special circumstances, however, an index might contain only some of the rows in a table. Indexing on a subset of rows can make it easier to process information in that table. For example, you might want to work with budget information that applies to your sales department only. In this case, you could create an index that includes only those rows whose DEPT_ID is SALES.
To create an index that includes only the rows you want, first determine which rows you want to include, then state this in the form of a valid dBL expression. For example, if you want to create an index of customers in your South sales region only, you could use a For condition expression such as SALES_REG = "SOUTH" to create the index. Thereafter, when you use this index, you see and process customers from the South region only.