<?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: Text from selection to excel in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10107019#M63828</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have some texts (top and bottom) in my drawing as above. I just need to have these in excel.&lt;/P&gt;
&lt;P&gt;After selection of the top texts (point 01 - 08) it should go in first column of excel file and after selection of bottom texts (23.65 - 22.10) it should go in second column of excel file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this, the program writes the string rows into on a CSV file format&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:RTC ( / _sortsel _dxf fc sc csvfile opf); Row to column
(defun _sortsel	(sel)
  (mapcar 'cadr
	  (vl-sort
	    (mapcar '(lambda (e)
		       (list (_dxf 10 e) (_dxf 1 e)) )
		    (vl-remove-if 'listp (mapcar 'cadr (ssnamex sel))) )
	    '(lambda (a b) (&amp;lt; (caar a) (caar b)))
	  )
  )
)
(defun _Dxf (d e)(cdr (assoc d (entget e))))	       
(if
    (and
      (princ "\nSelect text for first column")
      (setq fc (ssget '((0 . "TEXT"))))
      (princ "\nSelect text for second column")
      (setq sc (ssget '((0 . "TEXT"))))
      )
  (progn
    (setq fc (_sortsel fc)
	  sc (_sortsel sc))
    (setq csvfile (strcat (getvar 'dwgprefix)
			  (vl-filename-base (getvar 'dwgname)) ".csv"))
    (setq opf (open csvfile "w"))
    (foreach itm (mapcar 'list fc sc)
      (write-line (strcat (Car itm) "," (cadr itm)) opf)
      )
    (close opf)
    (startapp "explorer" csvfile)
    ); progn
  ); if
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: RTC&lt;/P&gt;
&lt;P&gt;Select text for first column&lt;/P&gt;
&lt;P&gt;Select text for second column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Feb 2021 03:48:40 GMT</pubDate>
    <dc:creator>pbejse</dc:creator>
    <dc:date>2021-02-24T03:48:40Z</dc:date>
    <item>
      <title>Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10105900#M63825</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txt2excel.png" style="width: 811px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/884569i2667A2E66FBDA13F/image-size/large?v=v2&amp;amp;px=999" role="button" title="txt2excel.png" alt="txt2excel.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have some texts (top and bottom) in my drawing as above. I just need to have these in excel.&lt;/P&gt;&lt;P&gt;After selection of the top texts (point 01 - 08) it should go in first column of excel file and after selection of bottom texts (23.65 - 22.10) it should go in second column of excel file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 18:22:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10105900#M63825</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-02-23T18:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10105940#M63826</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have some texts (top and bottom) in my drawing as above. I just need to have these in excel.&lt;/P&gt;
&lt;P&gt;After selection of the top texts (point 01 - 08) it should go in first column of excel file and after selection of bottom texts (23.65 - 22.10) it should go in second column of excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Easy does it.&lt;/FONT&gt;&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="toexcel.png" style="width: 198px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/884574i5B739629956D9233/image-dimensions/198x439?v=v2" width="198" height="439" role="button" title="toexcel.png" alt="toexcel.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 18:36:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10105940#M63826</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-02-23T18:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10106063#M63827</link>
      <description>&lt;P&gt;Use the&amp;nbsp;txt2mtxt command and select all text. Then edit the text and copy the text from within the text editor and paste it to Excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or use DATAEXTRACTION command and on page 2 select the whole drawing or only selected objects, on page 3 select Text, on page 4 only select Text Value, on page 6 select output to Excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you often do this and need a command created we can help create what you need.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 19:20:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10106063#M63827</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2021-02-23T19:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10107019#M63828</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have some texts (top and bottom) in my drawing as above. I just need to have these in excel.&lt;/P&gt;
&lt;P&gt;After selection of the top texts (point 01 - 08) it should go in first column of excel file and after selection of bottom texts (23.65 - 22.10) it should go in second column of excel file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this, the program writes the string rows into on a CSV file format&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:RTC ( / _sortsel _dxf fc sc csvfile opf); Row to column
(defun _sortsel	(sel)
  (mapcar 'cadr
	  (vl-sort
	    (mapcar '(lambda (e)
		       (list (_dxf 10 e) (_dxf 1 e)) )
		    (vl-remove-if 'listp (mapcar 'cadr (ssnamex sel))) )
	    '(lambda (a b) (&amp;lt; (caar a) (caar b)))
	  )
  )
)
(defun _Dxf (d e)(cdr (assoc d (entget e))))	       
(if
    (and
      (princ "\nSelect text for first column")
      (setq fc (ssget '((0 . "TEXT"))))
      (princ "\nSelect text for second column")
      (setq sc (ssget '((0 . "TEXT"))))
      )
  (progn
    (setq fc (_sortsel fc)
	  sc (_sortsel sc))
    (setq csvfile (strcat (getvar 'dwgprefix)
			  (vl-filename-base (getvar 'dwgname)) ".csv"))
    (setq opf (open csvfile "w"))
    (foreach itm (mapcar 'list fc sc)
      (write-line (strcat (Car itm) "," (cadr itm)) opf)
      )
    (close opf)
    (startapp "explorer" csvfile)
    ); progn
  ); if
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: RTC&lt;/P&gt;
&lt;P&gt;Select text for first column&lt;/P&gt;
&lt;P&gt;Select text for second column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2021 03:48:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10107019#M63828</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-02-24T03:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10108850#M63829</link>
      <description>Thanks a lot Patrick..&lt;BR /&gt;Your lisp worked as I wish...</description>
      <pubDate>Wed, 24 Feb 2021 17:00:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10108850#M63829</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-02-24T17:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10110047#M63830</link>
      <description>&lt;P&gt;Like your answer Pbe, Did years ago select as many columns as required. That way dont get "Oh need 3 columns now".&amp;nbsp; XYZ. Just press enter when asked for next column. Trying to find it found a hint 2004.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 02:30:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10110047#M63830</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-02-25T02:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10110085#M63831</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;That way dont get "Oh need 3 columns now".&amp;nbsp; XYZ. Just press enter when asked for next column. .&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;That's a good point&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;. Good ideas come from experience.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 02:53:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10110085#M63831</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-02-25T02:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10135494#M63832</link>
      <description>&lt;P&gt;Hi Patric,&lt;/P&gt;&lt;P&gt;Can you make it possible as sea.heaven&lt;SPAN class=""&gt;&amp;nbsp;said. (&lt;SPAN&gt;MESSAGE 6&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;OF 7&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 16:50:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10135494#M63832</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-06T16:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10135584#M63833</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Patric,&lt;/P&gt;
&lt;P&gt;Can you make it possible as sea.heaven&lt;SPAN class=""&gt;&amp;nbsp;said. (&lt;SPAN&gt;MESSAGE 6&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;OF 7&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Sure, hang on.&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;(defun c:RTC ( / _sortsel _dxf fc csvfile opf &lt;FONT color="#0000FF"&gt;row collection _comma&lt;/FONT&gt; ); Row to column
(defun _sortsel	(sel cl)
  (mapcar &lt;FONT color="#0000FF"&gt;'cdr&lt;/FONT&gt;
	  (vl-sort
	    (mapcar '(lambda (e)
		       &lt;FONT color="#0000FF"&gt;(redraw e 3)&lt;/FONT&gt;
		       (list (_dxf 10 e) (_dxf 1 e) e) )
		    (vl-remove-if 'listp (mapcar 'cadr (ssnamex sel))) )
	    '(lambda (a b) (&amp;lt; (caar a) (caar b)))
	  )
  )
)
(defun _Dxf (d e)(cdr (assoc d (entget e))))
&lt;FONT color="#0000FF"&gt;(setq collection nil inc 0
      _comma (lambda (s)(strcat s ","))
 )&lt;/FONT&gt;
  
&lt;FONT color="#0000FF"&gt;(While
  (progn
      (princ (strcat "\nSelect text for column "
		     (itoa (setq inc (1+ inc))) " "
	     )
      )&lt;/FONT&gt;
      (setq fc (ssget '((0 . "TEXT")))))
  &lt;FONT color="#0000FF"&gt;(setq collection (Cons (_sortsel fc inc) collection))
  )&lt;/FONT&gt;

&lt;FONT color="#0000FF"&gt;(if  (setq collection (reverse collection))&lt;/FONT&gt;
 &lt;FONT color="#0000FF"&gt; (progn&lt;/FONT&gt;
    	(setq csvfile (strcat (getvar 'dwgprefix)
			  (vl-filename-base (getvar 'dwgname)) ".csv"))
	(setq opf (open csvfile "w"))
	&lt;FONT color="#0000FF"&gt;(while (and (Car collection)
		    (setq data (mapcar 'car collection))
	       )
	  (setq row (apply 'strcat (mapcar '_comma (mapcar 'car data))))
	  (write-line row opf)
	  (foreach itm (mapcar 'cadr data) (redraw itm 4))
	  (setq collection (mapcar 'cdr collection))
	)&lt;/FONT&gt;
    	(close opf)
    	(startapp "explorer" csvfile)
    )
  )
  (princ)
)
&lt;/PRE&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 18:18:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10135584#M63833</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-06T18:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10136426#M63834</link>
      <description>&lt;P&gt;Thanks Patric,&lt;/P&gt;&lt;P&gt;one more request please...&lt;/P&gt;&lt;P&gt;i have more than 400 text objects in my drawing and I want to make it by 25 objects in one column and its corresponding value to the second column. For first selection it is working fine. But for second selection of 25 objects it is not creating another excel file as the previous file is open.&lt;/P&gt;&lt;P&gt;So can you modify your script to create a new sheet in the same excel file to have the second group object of selection.&lt;/P&gt;&lt;P&gt;hope you understand what I requested.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Philip John&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 09:53:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10136426#M63834</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-07T09:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10137525#M63835</link>
      <description>&lt;P&gt;In fairness to pbejse to make new sheets in excel can be done but that is a fairly big add on to the method now being used, it would need to open excel and write the data directly to excel rather than to a csv file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps a donation to pbejse would be a good idea as its not a 5 minute fix.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 00:01:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10137525#M63835</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-03-08T00:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139433#M63836</link>
      <description>&lt;P&gt;--&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 17:03:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139433#M63836</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-08T17:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139447#M63837</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I know it is not a 5 min fix and I am not in hurry. He will take his own time and will come out with a solution. For time being I shall use what he has "gifted" to me.&lt;BR /&gt;Moreover, I came to know from his previous answers/helps, that he is not so greedy to have some donation to help others by his God gifted knowledge and talents.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyway thanks for your recommendation.&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 17:04:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139447#M63837</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-08T17:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139536#M63838</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;Are you working for free? Or are you as greedy as us that needs to pay our bills and thus charge for our time even though we once in awhile help some without charging.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 17:33:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139536#M63838</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2021-03-08T17:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139671#M63839</link>
      <description>&lt;P&gt;Sorry for the inconvenience that occurred..&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was my own assumption that he is not greedy to have some donation for helping others as he never said he need payment for further modification or help.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 18:16:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10139671#M63839</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-08T18:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10140990#M63840</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;...He will take his own time and will come out with a solution. For time being I shall use what he has "gifted" to me&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Moreover, I came to know from his previous answers/helps, that he is not so greedy to have some donation to help others by his God gifted knowledge and talents.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Thank you for your kind words, and it still holds true, a request that requires a bit of time to code usually stays in my head for days.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;We're doing this to give back to the community in return for Autodesk appreciating our talent.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;In defense of&lt;/FONT&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp; &lt;FONT size="3"&gt;and&lt;/FONT&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/405101"&gt;@JTBWorld&lt;/a&gt;&amp;nbsp;, &lt;FONT size="3"&gt;they're not wrong either. We also have bills to pay.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;We wll definitely &lt;STRONG&gt;NOT&lt;/STRONG&gt; ask for any donation, but i doesnt mean its not welcome.&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;FONT size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Give your donations to :&amp;nbsp;106.117.115.116-32-97-32-80.114.97.110.107 under the name&amp;nbsp;L. E. Gpull.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Now that issue is settled, Moving on to your request..&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks Patric,&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;First of all, if you had not misspelled my name this could've been done days ago&lt;/FONT&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....corresponding value to the second column. For first selection it is working fine. But for second selection of 25...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Multiple tab csv is not possible, its either we do individual csv files or one excel file. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Choose wisely&lt;/FONT&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 04:43:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10140990#M63840</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-09T04:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10142813#M63841</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"Give your donations to :&amp;nbsp;106.117.115.116-32-97-32-80.114.97.110.107 under the name&amp;nbsp;L. E. Gpull.""&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I could not understand this method of sending donation. Can you please elaborate it?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 18:07:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10142813#M63841</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-09T18:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10142884#M63842</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;wrote
&lt;P&gt;&lt;SPAN&gt;I could not understand this method of sending donation. Can you please elaborate it?&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6613855"&gt;@Philip-John&lt;/a&gt;&amp;nbsp;it's not real &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;, its was meant to be a joke. When you learn enough lisp then you will understand. Dont worry about it. &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What i need from you is your reply to my last question regarding multiple csv file or one excel file, also you need to show me an example of a drawing and the desired result OK?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The donation thing is just for fun&lt;span class="lia-unicode-emoji" title=":oncoming_fist:"&gt;👊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 18:43:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10142884#M63842</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-03-09T18:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10144128#M63843</link>
      <description>&lt;P&gt;Had a laugh a hint (chr 106).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its just nice sometimes to make an offer when a request becomes a lot more complicated, a 6 pack of beer is not very expensive I know drank to many while coding late at night. I have never been paid for code provided on the forums commercially yes, offers have been made but its a big world out there hard to get to the other side of the world to have a couple of beers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am in AUS last big project was for client in CANADA no charge, 930 lines of code in one module 2 others done also will get there one day and redeem the couple of cartons of beer as payment.&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>Wed, 10 Mar 2021 04:47:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10144128#M63843</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-03-10T04:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text from selection to excel</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10148707#M63844</link>
      <description>&lt;P&gt;Sorry for delayed response. There was some net problem in my home&lt;/P&gt;&lt;P&gt;The donation joke I enjoyed.. So funny...&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;. Really I thought it's a kind of money transfer...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi pbejse, I prefer to have an excel file. But if it take more coding or time, then the csv file is enough for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your valuable support and help..&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Philip&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 15:40:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/text-from-selection-to-excel/m-p/10148707#M63844</guid>
      <dc:creator>Philip-John</dc:creator>
      <dc:date>2021-03-11T15:40:09Z</dc:date>
    </item>
  </channel>
</rss>

