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

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

Guest

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.
 
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.
 
Back
Top