0
0
SolidworksHow-ToBeginner · 3 min read

How to Move Objects in AutoCAD: Simple Steps Explained

To move an object in AutoCAD, use the MOVE command by selecting the object, specifying a base point, and then choosing a second point to place the object. This shifts the object from its original position to the new location you specify.
📐

Syntax

The basic syntax for moving an object in AutoCAD is:

  • MOVE - Starts the move command.
  • Select the object(s) you want to move.
  • Specify a base point - the reference point on the object.
  • Specify a second point - the new location where you want to move the object.
autocad
Command: MOVE
Select objects: (select object)
Specify base point: (pick base point)
Specify second point: (pick new location)
Output
The selected object moves from the base point to the second point location.
💻

Example

This example shows how to move a rectangle 5 units to the right:

autocad
Command: MOVE
Select objects: (select rectangle)
Specify base point: 0,0
Specify second point: 5,0
Output
The rectangle shifts horizontally 5 units to the right from its original position.
⚠️

Common Pitfalls

  • Not selecting the object before starting the move command.
  • Choosing an incorrect base point, which causes unexpected movement.
  • Forgetting to specify the second point, leaving the object in the original place.
  • Trying to move locked or frozen layers, which prevents movement.
autocad
Wrong way:
Command: MOVE
Specify base point: 0,0
Specify second point: 5,0

Right way:
Command: MOVE
Select objects: (select object)
Specify base point: 0,0
Specify second point: 5,0
Output
Wrong way: No object moves because none was selected. Right way: Object moves 5 units to the right.
📊

Quick Reference

StepAction
1Type MOVE and press Enter
2Select the object(s) to move
3Specify the base point (reference point)
4Specify the second point (new location)
5Press Enter to finish

Key Takeaways

Use the MOVE command to shift objects by selecting them and specifying two points.
Always select the object before specifying points to ensure it moves.
Choose a meaningful base point to control how the object moves.
Avoid moving objects on locked or frozen layers.
Use coordinate input or snapping to place objects precisely.