Creating an Index on Two Numeric Fields in FoxPro

Last reviewed: June 27, 1995
Article ID: Q89886
The information in this article applies to:
  • Microsoft FoxPro for MS-DOS, versions 1.x, 2.0, 2.5x, 2.6, 2.6a
  • Microsoft FoxPro for Windows, versions 2.5x, 2.6, 2.6a
  • Microsoft FoxPro for Macintosh, versions 2.5x, 2.6a

When an application uses the INDEX command to create an index on two numeric fields, INDEX creates one index on the sum of the two fields rather than an index on the concatenation of the fields.

To change this behavior, use the STR() function to convert each numeric field into a string, concatenate the strings together, and created an index on the resulting string value, as follows:

   INDEX ON STR(num1) + STR(num2) TO <file.idx>

Note that the STR() function pads the beginning of each string with additional space characters. You can use the ALLTRIM() function to remove the spaces.


Additional reference words: FoxDos FoxWin FoxMac 1.00 1.01 1.02 2.00 2.50
2.50a 2.50b 2.50c 2.60 2.60a
KBCategory: kbprg
KBSubcategory: FxprgTable


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 27, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.