I am sure I have seen an applicable solution to my problem, but I cannot find it in the threads. Here's an example of my database:
Name1 Name2 Path
----- ----- ----
Bob Reel \directory\bob.jpg
Bob Hill \directory\bob.jpg
Fred Sadd \directory\fred.jpg
Fred Pudd \directory\fred.jpg
Fred Yumm \directory\fred.jpg
Donna Dune \directory\Donna.jpg
Donna Acre \directory\Donna.jpg
Donna Wind \directory\Donna.jpg
I need a query that will group the rows on the FIRST INSTANCE of the PATH column to the TOP of the database.
Example:
Name1 Name2 Path
----- ----- ----
Bob Reel \directory\bob.jpg
Fred Sadd \directory\fred.jpg
Donna Dune \directory\Donna.jpg
...rest of db
The main problem is that ALL the rows are distinct. It would also be an acceptable result if ONLY the first instances were shown...than I can just paste/replace the results into the previous database.
Thank you...this site and it's contributors are impressive.
Dan
Name1 Name2 Path
----- ----- ----
Bob Reel \directory\bob.jpg
Bob Hill \directory\bob.jpg
Fred Sadd \directory\fred.jpg
Fred Pudd \directory\fred.jpg
Fred Yumm \directory\fred.jpg
Donna Dune \directory\Donna.jpg
Donna Acre \directory\Donna.jpg
Donna Wind \directory\Donna.jpg
I need a query that will group the rows on the FIRST INSTANCE of the PATH column to the TOP of the database.
Example:
Name1 Name2 Path
----- ----- ----
Bob Reel \directory\bob.jpg
Fred Sadd \directory\fred.jpg
Donna Dune \directory\Donna.jpg
...rest of db
The main problem is that ALL the rows are distinct. It would also be an acceptable result if ONLY the first instances were shown...than I can just paste/replace the results into the previous database.
Thank you...this site and it's contributors are impressive.
Dan