Printing Ranges

Whispersplus1

Registered User.
Local time
Today, 11:17
Joined
Feb 1, 2010
Messages
13
Hello Access world,
I'm trying to figure out how I can get a particuler range of information in a table to print. The articles that I enter in the database were placed in different locations.

Example
10 articles are placed in location 1
another 14 in location 2
and another 15 in location 3

What do I need to do to get the database to only print label for the articles that were placed in location !, 2, or 3.
Any assistance would be greatfully appreciated.
 
your where claus will be some thing like this
Code:
where location in(2,3)
 

Users who are viewing this thread

Back
Top Bottom