Copying certain column information quickly

H

HoganD87

As you know in Excel you could quickly copy the information you needed with a
drag of the mouse.

Because I need information copied repeatedly and easily for my access
unfirmiliar co workers.

Example

JOB CUSTOMER QUOTE #
A B1 110701
A(copied) A2 110701 (copied)
A(copied) C4 110701 (copied)

How do I do this quickly and efficiently for the computer challenged.
 
A

Arvin Meyer [MVP]

Sorry, Access is a database, not a spreadsheet, and can't be used like one.

You can write some code to select the rows that you want to include, then
put those row in memory, or export them to some other source. The easiest
way I know of to select contiguous rows is a query.
 
Top