serialized

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Im trying to build a form from an orders table. First I have to look for the
productid then for every order has to be serialized according to the size of
the order;
I need to know how as input the quantity it automatically gives me the
serialization for that order.
 
Im trying to build a form from an orders table. First I have to look for the
productid then for every order has to be serialized according to the size of
the order;
I need to know how as input the quantity it automatically gives me the
serialization for that order.

Serialized? Do you mean sorted in order? If so, base the form on a
Query sorting by the quantity.

John W. Vinson[MVP]
 
yes, I new in access, how can i do that?, please

John Vinson said:
Serialized? Do you mean sorted in order? If so, base the form on a
Query sorting by the quantity.

John W. Vinson[MVP]
 
yes, I new in access, how can i do that?, please

"John Vinson" wrote:

Create a new Query based on the table that you want in the form.

Select the fields that you want to display on the form.

Select "Ascending" or "Descending" on the Sort row of the query grid
under the field that you want to sort by.

Base the Form on this query.

John W. Vinson[MVP]
 
Back
Top