How do I itemize all of the numbers within multiple sets of range

B

BusyDad

I have thousands of ranges of documents that I need to determine all of the
individual numbers within the ranges. In Access is there a sql statement
that I can use.
 
D

Damian S

Hi BusyDad,

To find out unique numbers from a table, try:

select distinct DOCUMENTNUMBER from TABLENAME

Is that what you were after? If not, post a bit more info.

Damian.
 
Top