| Lesson 5 | Using Cut, Copy and Paste to enter data more quickly |
| Objective | Enter, edit and copy data in MS Access. |
The original lesson correctly introduces Cut/Copy/Paste and includes a useful step-by-step image sequence. However, it contains two major issues: (1) outdated UI references (for example, menu paths like Edit >> Copy), and (2) a long detour into Win32 API declarations that does not support the lesson objective. For a modern Access (Microsoft 365 / Access 2021+) workflow, learners need practical datasheet techniques: selecting cells/rows/columns, clipboard behaviors, repeating values, and safe editing patterns. This rewrite keeps the quick-reference table, preserves the full image gallery (each step differs), and removes off-topic API material.
When you are entering records in Datasheet View, you often repeat values (company names, states, dates, categories). Instead of retyping, you can copy existing values and paste them into new rows and columns. This reduces typing errors and speeds up data entry.
The workflow is consistent across Windows applications:
In Access, you can perform these actions using keyboard shortcuts, the Ribbon/Quick Access Toolbar, or the right-click context menu.
| Action | What it does | Keyboard | Toolbar button | Where to find it |
|---|---|---|---|---|
| Cut | Removes the selected value(s) and stores them on the clipboard | Ctrl+X | Right-click menu or Home tab (Clipboard group) | |
| Copy | Copies the selected value(s) to the clipboard | Ctrl+C | Right-click menu or Home tab (Clipboard group) | |
| Paste | Pastes clipboard content into the active cell | Ctrl+V | Right-click menu or Home tab (Clipboard group) |
Additional productivity shortcut: Ctrl+' (Ctrl + apostrophe) copies the value from the same field in the record above into the current field. This is one of the fastest ways to fill repeating values down a column.
Before you copy or cut, you need to select what you want to move:
Cutting and pasting is especially useful when you are cleaning up records, reorganizing data, or moving values between tables. For larger movements across many records or across multiple tables, importing is often better—but for small changes, clipboard operations are fast and reliable.
The following image sequence demonstrates a common workflow: store a few values on the clipboard, then paste them into empty cells. Each image is intentionally kept because it shows a distinct step in the process.
| FirstName | Lastname | Company | State |
| --------- | --------- | ------------------------- | --------- |
| Margaret | Levine | Network Consultants, Inc. | AZ |
| Thorley | Cook | Dynamic Solutions, Inc. | AZ |
| Christina | White | Lizard Web, Inc. | TX |
| Bill | Clarke | XPDX, Inc. | AZ |
| Nora | Sweeney | MediQual Systems, Inc. | AZ |
| Meg | Young | Great Tapes, Inc. | TX |
| Marcia | Priestley | Priestley Communications | CA |
| Catherine | Molkenbur | *(blank)* | *(blank)* |
| Hillary | Smith | *(blank)* | *(blank)* |
| Piper | Ronn | *(blank)* | *(blank)* |
1) Select the text you need and copy it to the clipboard. Here, the first value is “Network Consultants, Inc.” Select it by clicking and dragging across the text, then copy it using the Copy button (or Ctrl+C).
| FirstName | Lastname | Company | State |
| --------- | --------- | ------------------------- | --------- |
| Margaret | Levine | Network Consultants, Inc. | AZ |
| Thorley | Cook | Dynamic Solutions, Inc. | AZ |
| Christina | White | Lizard Web, Inc. | TX |
| Bill | Clarke | XPDX, Inc. | AZ |
| Nora | Sweeney | MediQual Systems, Inc. | AZ |
| Meg | Young | Great Tapes, Inc. | TX |
| Marcia | Priestley | Priestley Communications | CA |
| Catherine | Molkenbur | *(blank)* | *(blank)* |
| Hillary | Smith | *(blank)* | *(blank)* |
| Piper | Ronn | *(blank)* | *(blank)* |
2) After copying, the datasheet may look unchanged, but the clipboard contains your copied value. Next, copy the state value
“AZ” so it is also ready to paste later.
Enter data into your Clients table in this exercise using Cut, Copy, Paste, and Ctrl+' where appropriate.
Cut Copy Paste - Exercise