<?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: CONVERT COORDINATES TO EXCEL/TEXT in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7785740#M118191</link>
    <description>&lt;P&gt;&lt;SPAN&gt;try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.cadforum.cz/cadforum_en/click2xls-click-points-to-export-from-autocad-to-excel-tip8030" target="_blank"&gt;http://www.cadforum.cz/cadforum_en/click2xls-click-points-to-export-from-autocad-to-excel-tip8030&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 17 Feb 2018 13:26:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-17T13:26:15Z</dc:date>
    <item>
      <title>CONVERT COORDINATES TO EXCEL/TEXT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7199691#M118187</link>
      <description>&lt;P&gt;I'm having a hard time copying 1 by 1 each coordinate on acad to excel,&lt;/P&gt;&lt;P&gt;i have found what you call LISP that can be used for converting but when i move the UCS the coordinates it was different from what LISP gives&lt;/P&gt;&lt;P&gt;Is there someone who can help me on this? im not knowledgeable about LISP's. Thank you for response.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2017 07:30:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7199691#M118187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-03T07:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT COORDINATES TO EXCEL/TEXT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7226385#M118188</link>
      <description>&lt;P&gt;You may need to provide more information. Which LISP code are you using? Which co-ordinates are we talking about (co-ordinates of lines, points , plines etc.)? What format you need in excel. Can you do a screencast of what you mean by &lt;EM&gt;when i move the UCS the coordinates it was different from what LISP gives&lt;/EM&gt;.? Or provide some more explanation.&amp;nbsp;There are functions in LISP to change CS from UCS to WCS and vice versa. But without exact understanding of your problem it will be difficult for anyone to help.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 16:44:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7226385#M118188</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-07-13T16:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT COORDINATES TO EXCEL/TEXT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7784626#M118189</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;FONT color="#FF0000"&gt;but when i move the UCS the coordinates it was different from what LISP gives&lt;/FONT&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;When working with coordinates, you should NOT be moving the UCS!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;~DD&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 19:06:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7784626#M118189</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2018-02-16T19:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT COORDINATES TO EXCEL/TEXT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7784982#M118190</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;when i move the UCS the coordinates it was different from what LISP gives&lt;/P&gt;
&lt;P&gt;Is there someone who can help me on this? im not knowledgeable about LISP's. Thank you for response.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;On the assumption that the routine you're using is sending some point out to an external file, and that it starts with a point variable [a list of coordinates], which it converts to a text equivalent, it could be a fairly easy fix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll assume&amp;nbsp;a point that you want to write out is in a variable I'll call "&lt;FONT color="#ff6600"&gt;pt&lt;/FONT&gt;" [substitute your actual variable name], that comes from some object's entity data or VLA properties [for example, extracted with &lt;STRONG&gt;(cdr (assoc 10&lt;/STRONG&gt; &lt;EM&gt;&lt;FONT color="#00ccff"&gt;entitydatalist&lt;/FONT&gt;&lt;/EM&gt;&lt;STRONG&gt;))&lt;/STRONG&gt; for the start point of a Line, or some kind of&amp;nbsp;&lt;STRONG&gt;(vlax-curve-get...Point...&lt;/STRONG&gt;&amp;nbsp; AutoLisp function from various object types].&amp;nbsp; Those things are always returned in &lt;EM&gt;World&lt;/EM&gt;&amp;nbsp; Coordinate System values, but you can&amp;nbsp;&lt;STRONG&gt;(trans)&lt;/STRONG&gt;late them to values expressed in the current UCS.&amp;nbsp; Before the "&lt;FONT color="#ff6600"&gt;pt&lt;/FONT&gt;" variable gets converted to a text equivalent to go into a (write-line) function to send out to the file, do this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(setq &lt;FONT color="#ff6600"&gt;pt&lt;/FONT&gt; (trans &lt;FONT color="#ff6600"&gt;pt&lt;/FONT&gt; 0 1))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The zero means translate from WCS values; the 1 means translate to current UCS values.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 21:37:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7784982#M118190</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-02-16T21:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: CONVERT COORDINATES TO EXCEL/TEXT</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7785740#M118191</link>
      <description>&lt;P&gt;&lt;SPAN&gt;try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.cadforum.cz/cadforum_en/click2xls-click-points-to-export-from-autocad-to-excel-tip8030" target="_blank"&gt;http://www.cadforum.cz/cadforum_en/click2xls-click-points-to-export-from-autocad-to-excel-tip8030&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2018 13:26:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/convert-coordinates-to-excel-text/m-p/7785740#M118191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-17T13:26:15Z</dc:date>
    </item>
  </channel>
</rss>

