Moving a record (not the pointer) in a table

N

Neil

Hi
Is there a way to move a record from one position to
another position by using drag and drop method? I am
looking for a method similar to View -> Tab Order in
Access forms where you can change the tab order of a form
by dragging selected row(s) to move them to a desired tab
order

Thanks

Neil
 
K

Ken Snell

A table does not store records in any specific order; thus, "moving" a
record will not accomplish anything. All data records are "ordered" in
ACCESS by the "ORDER BY" clause in queries and by the "SORTING & GROUPING"
option in reports.
 
G

Guest

Thanks Ken for your quick response - Neil
-----Original Message-----
A table does not store records in any specific order; thus, "moving" a
record will not accomplish anything. All data records are "ordered" in
ACCESS by the "ORDER BY" clause in queries and by the "SORTING & GROUPING"
option in reports.

--
Ken Snell
<MS ACCESS MVP>




.
 
R

RSGinCA

There's no way to do it without some work.

You'd have to modify your table by adding some kind of sequence field and then
sorting on that field.

Then, if you wanted a capability like the drag and drop method in the Access's
Tab Order window, you'd have to do all the coding to implement that.

Rick
Subject: Moving a record (not the pointer) in a table
From: "Neil" (e-mail address removed)
Date: 2/6/2004 6:47 PM Pacific Standard Time
Message-id: <[email protected]>

Hi
Is there a way to move a record from one position to
another position by using drag and drop method? I am
looking for a method similar to View -> Tab Order in
Access forms where you can change the tab order of a form
by dragging selected row(s) to move them to a desired tab
order

Thanks

Neil


Rick G
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top