Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

xyz coordinates in excel files to points in autocad 1

Status
Not open for further replies.

ibrikci

Civil/Environmental
Joined
May 17, 2002
Messages
1
Location
TR
How can i transform coordinates (xy or xyz) in excel files to points in auto cad??

Thanks
 
"Save Excel file in comma delimited format, so you have a list of coordinates, each on its own line. Edit that file to start an AutoCAD command, such as 'point' or 'pline'. Execute this script by typing script on the command line and giving name of file. Example script file:

multiple
point
x1,y1,z1
x2,y2,z2
etc."

This was the answer I got for a similar post.
Alternatively, you can use a lisp routine (I have it, but just can't recall the name right now).
 
You can also format the points in excel so that they read
"x,y" (ei. A1&","&B1).
Then copy (ctrl-c) the column.
Go to Acad and type pline.
Then paste (ctrl-v).
The program will run a pline using the points in the clipboard.
Very simple.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top