<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to Transfer Data Points from Excel File to AutoCAD in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8778645#M140366</link>
    <description>&lt;P&gt;That worked! Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2019 16:06:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-05-08T16:06:19Z</dc:date>
    <item>
      <title>How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8776733#M140363</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a data set with the coordinates (northing, easting) of gauges on a construction site that I would like to plot on an AutoCAD drawing of the site. Is there an easy way to do this using Excel and AutoCAD only?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 19:59:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8776733#M140363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-07T19:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8776838#M140364</link>
      <description>&lt;P&gt;You can modify your Excel file into a .scr file as detailed here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/sfdcarticles/sfdcarticles/How-to-import-a-list-of-coordinates-into-AutoCAD.html" target="_blank"&gt;https://knowledge.autodesk.com/support/autocad/learn-explore/caas/sfdcarticles/sfdcarticles/How-to-import-a-list-of-coordinates-into-AutoCAD.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lots of other ways but this one is pretty simple and straightforward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ex. script text shown in link:&lt;/P&gt;
&lt;PRE&gt;_MULTIPLE _POINT
9231.55,8799.44,10
9241.83,8781.49,20
9194.23,8765.63,20
9191.68,8751.05,30
9158.88,8725.80,50
9147.11,8726.84,80
9128.10,8712.21,40
9145.18,8690.02,10
9152.41,8689.65,0
9167.86,8585.40,0
&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 May 2019 20:55:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8776838#M140364</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2019-05-07T20:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8778622#M140365</link>
      <description>&lt;P&gt;Your goal with Excel is to create a column of coordinates that are of the format number-comma-number (e.g., 1.23,4.56) and then use that column of coordinates in response to an AutoCAD command.&amp;nbsp; This can be done by creating a script file (.scr) or by simply doing a copy-paste of the coordinate list from Excel to AutoCAD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you wanted to generate a single polyline base on the coordinates you would select the coordinate in Excel, use Ctrl-C to copy them to the clipboard and then in AutoCAD give the command pline and then do a paste (Ctrl-V).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I like to use the Excel concatenate function to format the coordinates.&amp;nbsp; As you can see below it takes the value from column A then adds a comma (",") then the value from column B.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 491px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634354iC5A4608FD558C25E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;In this example you would Ctrl-C the values in column D and then in AutoCAD give the &lt;STRONG&gt;pline&lt;/STRONG&gt; command followed by Ctrl-V (paste).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to add a series of points then you need to terminate each coordinate with a space character.&amp;nbsp; The contents in B3 would look like this:&lt;/P&gt;
&lt;P&gt;=CONCATENATE(A3,",",B3," ")&lt;/P&gt;
&lt;P&gt;note the " " at the end.&amp;nbsp; This adds a space at the end of each line.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 520px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/634359i849C53966EE878FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Again, Ctrl-C the values in column D&amp;nbsp; but in AutoCAD give the &lt;STRONG&gt;point&lt;/STRONG&gt; command and then Ctrl-V paste.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 16:00:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8778622#M140365</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2019-05-08T16:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8778645#M140366</link>
      <description>&lt;P&gt;That worked! Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 16:06:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8778645#M140366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-08T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8779482#M140367</link>
      <description>&lt;P&gt;You can also add the AutoCAD command into the Excel formula in D3:&lt;/P&gt;
&lt;P&gt;=CONCAT(&lt;STRONG&gt;"point "&lt;/STRONG&gt;,A3,",",B3," ") or&lt;/P&gt;
&lt;P&gt;=CONCAT(&lt;STRONG&gt;"pline "&lt;/STRONG&gt;,A3,",",B3)&lt;/P&gt;
&lt;P&gt;Note the space after the AutoCAD command.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2019 22:11:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/8779482#M140367</guid>
      <dc:creator>Russell_I</dc:creator>
      <dc:date>2019-05-08T22:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13136810#M140368</link>
      <description>&lt;P&gt;This is very helpful, however, how can you use this tool and command to also include the point ID's so that you can tell what each point is once it is imported into AutoCAD?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 16:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13136810#M140368</guid>
      <dc:creator>criveQ4B2V</dc:creator>
      <dc:date>2024-11-07T16:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13138955#M140369</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12638721"&gt;@criveQ4B2V&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;... how can you use this tool and command to also include the point ID's so that you can tell what each point is once it is imported into AutoCAD?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a block with an attribute that will be used as the point number. For example,&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_0-1731075017724.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1431507i8D867E91E960D480/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_0-1731075017724.png" alt="leeminardi_0-1731075017724.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Set &lt;STRONG&gt;ATTDIA&lt;/STRONG&gt; to &lt;STRONG&gt;0&lt;/STRONG&gt;.&amp;nbsp; This will disable&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;the dialog box for attribute value entry.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Add a column to you Excel file for the AutoCAD command like the following:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_1-1731075224403.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1431509iFA9EF211D5D7F588/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_1-1731075224403.png" alt="leeminardi_1-1731075224403.png" /&gt;&lt;/span&gt;&lt;P&gt;Note that cell I2 contains the following (fill it down to other rows):&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;=CONCATENATE("(command ",CHAR(34),"-insert",CHAR(34)," ",CHAR(34),A2,CHAR(34)," ", CHAR(34),B2,",",C2,",",D2,CHAR(34)," ",E2," ",F2," ",G2," ",H2,")")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CHAR(34) in the formula above is used to create quote marks needed by the LISP statement that are not confused with quote marks that are reqired by Excel.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 4. Copy to the clipboard cell I2 down to the last row.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 5. Paste to the command prompt in AutoCAD yielding:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_2-1731075596762.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1431513iE726440385F6351F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_2-1731075596762.png" alt="leeminardi_2-1731075596762.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 14:29:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13138955#M140369</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2024-11-08T14:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13852939#M355891</link>
      <description>&lt;P&gt;I tried option 2, but it doesn't on my system.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 14:58:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13852939#M355891</guid>
      <dc:creator>ssise</dc:creator>
      <dc:date>2025-10-15T14:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to Transfer Data Points from Excel File to AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13852983#M355893</link>
      <description>&lt;P&gt;post your Excel file and a drawing file that contains the blocks.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 15:28:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-transfer-data-points-from-excel-file-to-autocad/m-p/13852983#M355893</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2025-10-15T15:28:14Z</dc:date>
    </item>
  </channel>
</rss>

