<?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: Input data from CAD to an open excel in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771610#M70014</link>
    <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;TEST THIS&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:TESTrun (/ *error* sset1 qty counter acdoc insertionpoint tables len ent row hyplnk start end box1 box1name box2 box2name)
		(setq *error* xx:Error)
		(vl-load-com)
  		(setq acdoc (vla-get-ActiveDocument (vlax-get-acad-object)))
	
		;select a set of lines
		(setq sset1 (ssget'((0 . "LINE"))))
  		(setq qty (sslength sset1))
		(setq insertionpoint (getpoint "\nTable scale depend on annotation scale.\nSpecify table insert point: "))
		;selection filter
  		(setq tables (vla-addtable
			      (vla-get-modelspace acdoc)
			      (vlax-3d-point insertionpoint)
			      (+ 2 qty)
			      3
			      10
			      50
			    )
		)
  		(vla-settext tables 1 0 "Start")
  		(vla-settext tables 1 1 "End")
  		(vla-settext tables 1 2 "Length")
		(setq row 2)
		(setq counter 0)
		(print qty)
  		(while (&amp;lt; counter qty)
		  (setq ent (vlax-ename-&amp;gt;vla-object (ssname sset1 counter))
		  	start (vlax-curve-getstartpoint ent)
			end (vlax-curve-getendpoint ent)
			len (vlax-curve-getDistatParam ent (vlax-curve-getEndParam ent))
		  )
		  (setq box1 (ssget "_X" (list (cons 0 "INSERT") (cons 10 start))))
		  (setq box1name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box1 0))))
		  (setq box2 (ssget "_X" (list (cons 0 "INSERT") (cons 10 end))))
		  (setq box2name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box2 0))))
                  
		  (vla-settext tables row 0 box1name)
		  (vla-settext tables row 1 box2name)
		  (vla-settext tables row 2 (rtos len 2 2))
		  (setq counter (1+ counter))
		  (setq row (1+ row))
		)

)&lt;/LI-CODE&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>Mon, 28 Sep 2020 07:20:03 GMT</pubDate>
    <dc:creator>hosneyalaa</dc:creator>
    <dc:date>2020-09-28T07:20:03Z</dc:date>
    <item>
      <title>Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9765312#M70007</link>
      <description>&lt;P&gt;Hello guys!&lt;/P&gt;&lt;P&gt;I am need of your knowledge and expertise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically I am nearing the end of my small project.&lt;/P&gt;&lt;P&gt;So my program lists the starting block and end block of a polyline and it's length.&lt;/P&gt;&lt;P&gt;And creates a CAD Table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now what I would like is, instead of creating a table in would transfer that data directly to an open Excel file in a particular cell chosen by the user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible? and if it isn't.&amp;nbsp; I am open to any alternatives that may serve the same purpose.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks to those who would like to share their input&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 08:40:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9765312#M70007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T08:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9767013#M70008</link>
      <description>&lt;P&gt;&lt;SPAN&gt;For better understanding, and, maybe, get further help, please upload such sample.dwg&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 21:33:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9767013#M70008</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2020-09-24T21:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9767198#M70009</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp; and the XLS too&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 00:03:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9767198#M70009</guid>
      <dc:creator>devitg</dc:creator>
      <dc:date>2020-09-25T00:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9769660#M70010</link>
      <description>&lt;P&gt;1 Did you do any Googling Autocad -&amp;gt; Excel so much code out there already, how to do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 How good is your lisp skills ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3 Getexcel.lsp has the answers.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Sep 2020 06:04:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9769660#M70010</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-09-26T06:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771331#M70011</link>
      <description>&lt;P&gt;1&amp;nbsp; I did but I did not find anything with the same intention as mine, they usually divert to another way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2&amp;nbsp; Very basic knowledge only &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3 I see, if getexcel has the answers then I will have a closer look at it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 01:49:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771331#M70011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-28T01:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771333#M70012</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;see sample drawing with generated table&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 01:50:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771333#M70012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-28T01:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771334#M70013</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/58962"&gt;@devitg&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for the excel no specific xls needed I just want the user to select in excel where they want to input the data (even if it is a blank one)&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 01:51:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771334#M70013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-28T01:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771610#M70014</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;TEST THIS&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:TESTrun (/ *error* sset1 qty counter acdoc insertionpoint tables len ent row hyplnk start end box1 box1name box2 box2name)
		(setq *error* xx:Error)
		(vl-load-com)
  		(setq acdoc (vla-get-ActiveDocument (vlax-get-acad-object)))
	
		;select a set of lines
		(setq sset1 (ssget'((0 . "LINE"))))
  		(setq qty (sslength sset1))
		(setq insertionpoint (getpoint "\nTable scale depend on annotation scale.\nSpecify table insert point: "))
		;selection filter
  		(setq tables (vla-addtable
			      (vla-get-modelspace acdoc)
			      (vlax-3d-point insertionpoint)
			      (+ 2 qty)
			      3
			      10
			      50
			    )
		)
  		(vla-settext tables 1 0 "Start")
  		(vla-settext tables 1 1 "End")
  		(vla-settext tables 1 2 "Length")
		(setq row 2)
		(setq counter 0)
		(print qty)
  		(while (&amp;lt; counter qty)
		  (setq ent (vlax-ename-&amp;gt;vla-object (ssname sset1 counter))
		  	start (vlax-curve-getstartpoint ent)
			end (vlax-curve-getendpoint ent)
			len (vlax-curve-getDistatParam ent (vlax-curve-getEndParam ent))
		  )
		  (setq box1 (ssget "_X" (list (cons 0 "INSERT") (cons 10 start))))
		  (setq box1name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box1 0))))
		  (setq box2 (ssget "_X" (list (cons 0 "INSERT") (cons 10 end))))
		  (setq box2name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box2 0))))
                  
		  (vla-settext tables row 0 box1name)
		  (vla-settext tables row 1 box2name)
		  (vla-settext tables row 2 (rtos len 2 2))
		  (setq counter (1+ counter))
		  (setq row (1+ row))
		)

)&lt;/LI-CODE&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>Mon, 28 Sep 2020 07:20:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771610#M70014</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2020-09-28T07:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771638#M70015</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see you saw my typo for box1---&amp;gt; box2 (I also noticed just recently)&lt;/P&gt;&lt;P&gt;and thanks for the rtos recommendation I forgot about that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically now my problem is how to handle this data.&lt;/P&gt;&lt;P&gt;I don't want to create a CAD table anymore.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Options are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;to input it to excel via getexcel&lt;/LI&gt;&lt;LI&gt;create a new csv file with the data&lt;/LI&gt;&lt;LI&gt;paste to clipboard the data so the user can paste to whatever cell he likes&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I am very interested in a clipboard option I saw a code&lt;/P&gt;&lt;P&gt;from&amp;nbsp;@CodeDing&amp;nbsp;&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-program-to-copy-dimensions-to-clipboard-and-paste-in-excel/td-p/8705507" target="_blank" rel="noopener"&gt;here&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This method is very convincing, my idea is to create a string that if I paste in excel would mimic the results of my table.&lt;/P&gt;&lt;P&gt;In this code he successfully segregated each text by a tab entry (moving to the next cell) so my only problem is how to code the "Enter" command in a strcat generated text&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:C2E ( / _SetClipBoardText ss txt cnt len)
(vl-load-com)
;Function to set clipboard
  (defun _SetClipBoardText ( text / htmlfile result )
    ;;  Attribution: Reformatted version of
    ;;  post by XShrimp at theswamp.org.
    ;;  See http://tinyurl.com/2ngf4r.
    (setq result
        (vlax-invoke
            (vlax-get
                (vlax-get
                    (setq htmlfile (vlax-create-object "htmlfile"))
                   'ParentWindow
                )
               'ClipBoardData
            )
           'SetData
            "Text"
            text
        )
    )
    (vlax-release-object htmlfile)
    text
  );defun
;Get input from user. 4 dims, in order w/ window (ssget) capability
(setq ss nil cnt 1 txt "")
(while (not ss)
  (prompt (strcat "\nSelect Dimension " (itoa cnt) ": "))
  (if (setq ss (ssget '((0 . "DIMENSION"))))
    (if (= 1 (sslength ss))
      (progn
	(setq len (cdr (assoc 42 (entget (ssname ss 0)))))
	(setq txt (strcat txt (rtos len 4)))
	(if (/= 4 cnt) (setq ss nil txt (strcat txt "\t")))
	(setq cnt (1+ cnt) len nil)
      );progn
      (progn
	(setq ss nil)
	(prompt "\n...invalid. More than 1 object selected.")
      );progn
    );if
  ;else
    (prompt "\n...nothing selected")
  );if
);while
;If string, send to clipboard and send feedback to user
(if (&amp;lt; 0 (strlen txt))
  (progn
    (_SetClipBoardText txt)
    (prompt "\nText Successfully copied to clipboard.")
  );progn
    (prompt "\nFailure, no text to copy to clipboard...")
);if
(princ);finish quietly
);defun&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 07:45:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771638#M70015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-28T07:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771686#M70016</link>
      <description>&lt;P&gt;HI&amp;nbsp;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TEST&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:TESTrun (/ *error* sset1 qty counter acdoc insertionpoint tables len ent row hyplnk start end box1 box1name box2 box2name)
		(setq *error* xx:Error)
		(vl-load-com)
  		(setq acdoc (vla-get-ActiveDocument (vlax-get-acad-object)))
	
		;select a set of lines
	(IF	(setq sset1 (ssget'((0 . "LINE"))))
  (PROGN
  		(setq qty (sslength sset1))
                (setq LISLINE NIL)
                (setq file (open  (setq file2open(getfiled "Output file"
                (strcat (getvar "dwgprefix")
                (substr (getvar "DWGNAME") 1 (- (strlen (getvar "dwgname")) 4)))
                "CSV"     ;file type
                1)) "w"))
                (setq i 0 sep ";")    ;sep=separator
;;;		(setq insertionpoint (getpoint "\nTable scale depend on annotation scale.\nSpecify table insert point: "))
;;;		;selection filter
;;;  		(setq tables (vla-addtable
;;;			      (vla-get-modelspace acdoc)
;;;			      (vlax-3d-point insertionpoint)
;;;			      (+ 2 qty)
;;;			      3
;;;			      10
;;;			      50
;;;			    )
;;;		)
;;;  		(vla-settext tables 1 0 "Start")
;;;  		(vla-settext tables 1 1 "End")
;;;  		(vla-settext tables 1 2 "Length")
;;;		(setq row 2)
		(setq counter 0)
		(print qty)
  		(while (&amp;lt; counter qty)
		  (setq ent (vlax-ename-&amp;gt;vla-object (ssname sset1 counter))
		  	start (vlax-curve-getstartpoint ent)
			end (vlax-curve-getendpoint ent)
			len (vlax-curve-getDistatParam ent (vlax-curve-getEndParam ent))
		  )
                  
		  (setq box1 (ssget "_X" (list (cons 0 "INSERT") (cons 10 start))))
		  (setq box1name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box1 0))))
		  (setq box2 (ssget "_X" (list (cons 0 "INSERT") (cons 10 end))))
		  (setq box2name (vla-get-effectivename (vlax-ename-&amp;gt;vla-object (ssname box2 0))))
;;;                  (setq LISLINE (CONS (LIST box1name box2name (rtos len 2 2)) LISLINE))
                  (write-line (strcat box1name sep box2name sep (rtos len 2 2)) file)
;;;		  (vla-settext tables row 0 box1name)
;;;		  (vla-settext tables row 1 box2name)
;;;		  (vla-settext tables row 2 (rtos len 2 2))
		  (setq counter (1+ counter))
;;;		  (setq row (1+ row))
		)

  (close file)
    (startapp "explorer" file2open);opin excel 
    ))
  (princ)

  
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 08:24:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771686#M70016</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2020-09-28T08:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771779#M70017</link>
      <description>&lt;P&gt;Thanks for the test code&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this was the resulting excel.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jdzabala11_0-1601284856249.png" style="width: 159px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/824502iE9C095CC8D47C1EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jdzabala11_0-1601284856249.png" alt="jdzabala11_0-1601284856249.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll figure out how to tab delimit the text so as to input in diff cells.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 09:21:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9771779#M70017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-28T09:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Input data from CAD to an open excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9773483#M70018</link>
      <description>&lt;P&gt;A work around write the text file, open using Autocad in notepad, Startapp can do Ctrl+a, Ctrl+c then go to Execl.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(command "start" "notepad D:\\acadtemp\\blocks.txt")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suggest use the delimeter comma x,y,z etc&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can answer that delimeter is tab comma : ; etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot260.png" style="width: 511px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/824861i10F339CDA7AB3FD5/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot260.png" alt="screenshot260.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 04:03:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/input-data-from-cad-to-an-open-excel/m-p/9773483#M70018</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-09-29T04:03:22Z</dc:date>
    </item>
  </channel>
</rss>

