Here is a silly question. Lets say I have a query that produces for a list box, and it produces values for three stores
Store A 18
Store B 32
Store C 54
Now if I ORDER BY in the sql statement the only thing it will do is descending or ascending alphabetically but I want a certain order (only because THEY WANT A CERTAIN ORDER) …..so is there a way for me to add something to the SQL to get
Store B
Store C
Store A
i.e. basically row by row what i want. thanks!
Add a numeric field, sequencer, to the table which contains the store names. Use the sequencer values to determine your sort order.
In the list box, set the column width = 0 for the sequencer column.
Or simply, as @dscarr suggested, don’t include sequencer in the
SELECTfield list, but just include it in theORDER BY…