hi all,
I am using access database, and in my table i have the following:
ID 'as PK
Price
Quantity
Description
i am displaying everything in a MSHFlex Grid and in my ADO (which is linked
to the Grid) I have this statement:
SELECT ID, Quantity, Price FROM Table1 GROUP BY ID ORDER BY ID it works fine
BUT
I want to add the Description field to my grid, because showing only the IDs
and price doesn't give my client the satisfaction of knowing the description
of each ID. I can get it to display if i don't choose the group by function.
Is there anyway i can display the Description field and still use the GROUP
BY function?
i've seen it done before but i don't know how
thank you in advanced