<?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: Place Objects with X Y and Rotation Values from Excel to Autocad in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/11415381#M280943</link>
    <description>&lt;P&gt;Hi, hope someones still here to help !&lt;/P&gt;&lt;P&gt;Awesome work this. However, is there a way to have a column in excel which contains the attribute required for each symbol then when you paste into Autocad, the symbols will be automatically populated with the relevant atrribute? Hope this makes sense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !!&lt;/P&gt;</description>
    <pubDate>Mon, 12 Sep 2022 09:36:28 GMT</pubDate>
    <dc:creator>chrisjune1994</dc:creator>
    <dc:date>2022-09-12T09:36:28Z</dc:date>
    <item>
      <title>Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6309106#M280935</link>
      <description>&lt;P&gt;I have an excel spreadsheet with X, Y, and Rotation values (see example). I want to place the base point of a defined block at each&amp;nbsp;point and rotated. My spreed sheet contains ~1000 X,Y, rotation values, so I need a LISP or Scipt that does this automatically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried finding and running codes I have found online but with no luck.&amp;nbsp;What is the best/easiest way to do this?&amp;nbsp;I am a novice at understanding/running LISP, so the simplier the better. Any help will be greatly&amp;nbsp;appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Danny&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 20:56:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6309106#M280935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-04T20:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6309795#M280936</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can use excel formulas to create a script like list of commands and then just do a copy &amp;amp; paste.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the attached XLSX (basically yours + formulas and:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Start AutoCAD with a new drawing&lt;/LI&gt;
&lt;LI&gt;Make sure to set ATTREQ to 0 in case your block has attributes (or modify the XLS to fill the requested attributes)&lt;/LI&gt;
&lt;LI&gt;In XLS select K2 to Q12&lt;/LI&gt;
&lt;LI&gt;right mouse click ==&amp;gt; copy&lt;/LI&gt;
&lt;LI&gt;change to AutoCAD&lt;/LI&gt;
&lt;LI&gt;make sure your mouse selected the command line&lt;/LI&gt;
&lt;LI&gt;right mouse click ==&amp;gt; paste&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;ready.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Within the XLS I have prepared:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;in E2 ... type in your block name&lt;/LI&gt;
&lt;LI&gt;in column G to H ... converted decimal seperator from comma to point (in case your Windows is set to use comma as decimal seperator&lt;/LI&gt;
&lt;LI&gt;in column K to Q ... a lisp command to insert a block with your blockname at the coodinates/scaling 1/your rotation&lt;/LI&gt;
&lt;LI&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;What you need when you have other data:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;copy your new X/Y/Rotation data to columns A to C, starting with row 2&lt;/LI&gt;
&lt;LI&gt;select the range K2 to Q2 ==&amp;gt; right-click ==&amp;gt; copy&lt;/LI&gt;
&lt;LI&gt;select range K3 to Q&amp;lt;rows depending on the number of rows your new data has&amp;gt; ==&amp;gt; right-click ==&amp;gt; paste&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH, - alfred -&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 11:25:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6309795#M280936</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2016-05-05T11:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310189#M280937</link>
      <description>&lt;P&gt;First off, I want to thank you for your help on this project. I really apprciate it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I have a few problems when trying to get this to work. First off, I had to delete column "O" from your example, giving only 1 scale instead of 2. Otherwise, this would not work. (I have attached new excel showing).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The main problem I am having is somtimes the block are inserted at the wrong coordinates. I can delete all the blocks I just inserted in autocad then and paste the same script, and it will give me a slightly different layout. Only occasionally (maybe 1 in 10 tries) &amp;nbsp;will it insert all the blocks at the correct coordinates. There could not find a pattern to this madness either!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is so close to working perfectly! Do you know what I could be doing wrong? I have set attreq to 0 and tried following you directions as closly as posssible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Danny&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 14:46:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310189#M280937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-05T14:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310250#M280938</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#000080"&gt;&amp;gt;&amp;gt; First off, I had to delete column "O" from your example, giving only 1 scale instead of 2&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Then your block is set to "scale uniform only".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#000080"&gt;&amp;gt;&amp;gt; somtimes the block are inserted at the wrong coordinates&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Turn OFF object snap before starting the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 15:09:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310250#M280938</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2016-05-05T15:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310293#M280939</link>
      <description>&lt;P&gt;Alfred, thank you very much. This works perfectly now! You are a smart man.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 15:23:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/6310293#M280939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-05T15:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10630695#M280940</link>
      <description>&lt;P&gt;It took me a second to get what the excel sheet was doing.&amp;nbsp; Brilliant - thanks so much.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 22:00:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10630695#M280940</guid>
      <dc:creator>tim.garrison8XZPQ</dc:creator>
      <dc:date>2021-09-17T22:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10899643#M280941</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Does anybody know how I can insert Blocks in a specific layer based on my excel data?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an Excel file that contains Block names, X, Y, Rotation, and layer data. I used your method for inserting my Blocks, but all of them are in the 0 layer. I want each of them to be in their own layer based on their excel data.&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jan 2022 16:57:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10899643#M280941</guid>
      <dc:creator>hootan2003</dc:creator>
      <dc:date>2022-01-23T16:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10899664#M280942</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080"&gt;&lt;EM&gt;&amp;gt;&amp;gt; I used your method for inserting my Blocks, but all of &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080"&gt;&lt;EM&gt;&amp;gt;&amp;gt; them are in the 0 layer&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Your Excel-file does not show your script content, so I can't see where you tried to set the layer and so I can't tell you where/why your trial failed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jan 2022 17:11:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/10899664#M280942</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2022-01-23T17:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/11415381#M280943</link>
      <description>&lt;P&gt;Hi, hope someones still here to help !&lt;/P&gt;&lt;P&gt;Awesome work this. However, is there a way to have a column in excel which contains the attribute required for each symbol then when you paste into Autocad, the symbols will be automatically populated with the relevant atrribute? Hope this makes sense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 09:36:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/11415381#M280943</guid>
      <dc:creator>chrisjune1994</dc:creator>
      <dc:date>2022-09-12T09:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/13304953#M280944</link>
      <description>&lt;P&gt;Why some block need X, Y scale but some don't need?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="insert.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1463881i58404D6174CFC258/image-size/large?v=v2&amp;amp;px=999" role="button" title="insert.png" alt="insert.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 04:58:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/13304953#M280944</guid>
      <dc:creator>kitwing_kai</dc:creator>
      <dc:date>2025-02-07T04:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Place Objects with X Y and Rotation Values from Excel to Autocad</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/13305224#M280945</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you create a Block(definition), there is an option "Scale uniformly".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Automation with AutoCAD Commands,&lt;/P&gt;&lt;P&gt;Use the INSERT option SCALE !&lt;/P&gt;&lt;P&gt;Insert&lt;/P&gt;&lt;P&gt;Blockname&lt;/P&gt;&lt;P&gt;SCALE&lt;/P&gt;&lt;P&gt;.. and so on.&lt;/P&gt;&lt;P&gt;This way the workflow is the same for all blocks - forced to uniformly scaled&amp;nbsp; or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 08:39:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/place-objects-with-x-y-and-rotation-values-from-excel-to-autocad/m-p/13305224#M280945</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-02-07T08:39:14Z</dc:date>
    </item>
  </channel>
</rss>

