Hi,
I want to generate index as follows
Now Index should be in descending order based on field TOTSALE but I want to keep Customer in Alphabetical Order, can I do so?
I did this but the it is showing the last Customer (Alphabetically) to the top of the list.
I want to generate index as follows
Cursor Fields
-------------
1. PCODE ( Customer Code )
2. FULL_NAME ( Customer Name )
3. LOCATION ( Address )
4. NETSALE ( Total Net Sale )
Now Index should be in descending order based on field TOTSALE but I want to keep Customer in Alphabetical Order, can I do so?
I did this but the it is showing the last Customer (Alphabetically) to the top of the list.
Code:
INDEX on pcode+location+STR(netSale) TAG NetAsc ASCENDING ADDITIVE
INDEX on pcode+location+STR(netSale) TAG NetDesc DESCENDING ADDITIVE