Using VFP9, I have a table with 200,000 records. A recordtype field in the table is used to hold one of five values (A, B, C, D, E). Then, one of five pages in a pageframe is used to display each of the five recordtypes. For example, page 1 displays records of recordtype='A', page 2 displays records of recordtype='B', etc. Once the appropriate subset is displayed, records are updated by the end user. My question: What is the quickest way to display a subset of the table so that the results appear almost instantaneously. Should I use the "Set Filter To" command? Create a view for each page? I don't want to split the big table into five small ones. Thanks!