<?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: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp;amp; CREATE TABLE IN MODEL SPACE in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395693#M22850</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kumar_BhosaleKQTP9_0-1700714646745.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1296402iCB970A79FA8C1706/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kumar_BhosaleKQTP9_0-1700714646745.png" alt="Kumar_BhosaleKQTP9_0-1700714646745.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kumar_BhosaleKQTP9_1-1700714673525.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1296403iDA8755D2683F8542/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kumar_BhosaleKQTP9_1-1700714673525.png" alt="Kumar_BhosaleKQTP9_1-1700714673525.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have attached screenshot of my blocks and table result I am interested in, For your reference also attached. Want to achieve this with the help of lisp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Nov 2023 04:46:19 GMT</pubDate>
    <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
    <dc:date>2023-11-23T04:46:19Z</dc:date>
    <item>
      <title>EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12318536#M22842</link>
      <description>&lt;P&gt;Hi Everyone I am new to Autolisp,&lt;BR /&gt;Please guide me on the following code, I have taken the efforts to go through the complete forum for solution but could not understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:CRTP (/ sel SS dxeFile)
  (initget 1 "All Select")
  (setq sel (strcase (getkword "\Select individual blocks or Select All (S or A): ")))

  (if (= sel "SELECT")
      (setq SS (ssget '((2 . "xyz123")))
      )
      (setq SS (ssget "_X" '((2 . "xyz123")))
      )
  )

  ; Define the path to your predefined DXE file
  (setq dxeFile "C:\\Users\\Desktop\\dsf.dxe") ; Update with the full path to your DXE file

  ; Check if any blocks were selected
  (if (null SS)
      (prompt "\nNo blocks selected.")
      (progn
        ; Load the predefined DXE file
        (command "-dataextraction" "DATAEXTRACTION" "LOAD" dxeFile)

        ; Select the specified objects
        (command "-dataextraction" "SELECT" SS "")

        ; Generate the data extraction table
        (command "-dataextraction" "EXTRACT" "")

        (princ "Data Extraction table created.")
      )
  )
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 03:48:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12318536#M22842</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-10-20T03:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12319501#M22843</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;(defun c:CRTP (/ sel SS) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(setq sel (strcase (getkword "\nSelect individual blocks or select all (S ou A): ")))&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;(if (= sel "S") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(setq SS (ssget "X" '((2 . "YOURBLOCKNAME"))) ; Replace "YOURBLOCKNAME" with the name of the block you want to select. &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(setq SS (ssget "_X" '((2 . "YOURBLOCKNAME"))) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;(if (null SS) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(alert "No blocks selected.") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(progn &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(comando "-dataextraction" "DATAEXTRACTION" "ON") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(comando "-dataextraction" "OBJECTS" SS) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(comando "-dataextraction" "INCLUDE" "Y" "Atributos") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(comando "-dataextraction" "EXTRACT" "S" "M" "Sim" "") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(comando "-dataextraction" "EXIT") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(princ "\nCreated data extraction table.") &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;(principal) &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT&gt;&lt;FONT&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are the main corrections and clarifications:&lt;/P&gt;&lt;P&gt;Corrected the prompt for "Select individual blocks or Select All (S or A):" to clarify the "S" options for individual selection and "A" for selection of all.&lt;/P&gt;&lt;P&gt;The block selection is made based on the user's choice and stored in the SS variable. Make sure to replace "&lt;FONT&gt;YOURBLOCKNAME&lt;/FONT&gt;" with the name of the block you want to select.&lt;/P&gt;&lt;P&gt;To create the data extraction table, the code uses a series of "-dataextraction" commands. It activates data extraction, defines the selected objects, adds attributes to the extraction, extracts the data, and finally ends the extraction and displays a message indicating that the table has been created.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 12:52:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12319501#M22843</guid>
      <dc:creator>2050722</dc:creator>
      <dc:date>2023-10-20T12:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12319517#M22844</link>
      <description>&lt;P&gt;It is not clear what the difficulty is, please report the error you encountered to try to help you, or how&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 12:53:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12319517#M22844</guid>
      <dc:creator>2050722</dc:creator>
      <dc:date>2023-10-20T12:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12323453#M22845</link>
      <description>&lt;P&gt;Thank you for the response.&lt;BR /&gt;&lt;BR /&gt;I am trying to add Data Extraction table in the model space using pre-defined dxe file, but I am unable to change the selection of objects for the dxe file, And I get the same result everytime I run the lisp.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 03:35:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12323453#M22845</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-10-23T03:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12324001#M22846</link>
      <description>&lt;LI-CODE lang="general"&gt;(defun c:CRTP (/ sel SS dxeFile)
  (initget 1 "All Select")
  (setq sel (strcase (getkword "\Select individual blocks or Select All (S or A): ")))
  
  (if (= sel "SELECT")
      (setq ss (ssget '((2 . "xyz123"))))
      (setq ss (ssget "X" '((2 . "xyz123"))))
  )
 (if (zerop (getvar "CMDACTIVE"))
  (progn (sssetfirst ss ss)(princ))
   ss
 )

(command "-DATAEXTRACTION" (strcat (getvar 'dwgprefix) "dsf.dxe"))
(if (wcmatch (getvar "cmdnames") "*DATAEXTRACTION*") (command "_Y"))
  
) &lt;/LI-CODE&gt;&lt;P&gt;The data extraction command does not take the selected block set as a selection for the command.&lt;BR /&gt;It creates table at the end which is based on default manual selection by dxe.file&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 10:28:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12324001#M22846</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-10-23T10:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12325876#M22847</link>
      <description>&lt;P&gt;If you want end result a table of multiple blocks etc then dont worry about dataextraction, there are so many extract attribute details and put into a table using lisp. These can be a custom single answer or a more complex multi named block solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an example select multiple named blocks with multiple attributes per block, count similar blocks and up to 5 levels of attributes and put in a table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you post a dwg with blocks and the desired table I am sure you will get multiple answers.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 00:27:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12325876#M22847</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2023-10-24T00:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12331970#M22848</link>
      <description>&lt;P&gt;So will it be a datalink and can be updated as DataExtraction after changes are made. If yes can you share some reference for the lisp.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 06:36:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12331970#M22848</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-10-26T06:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12334680#M22849</link>
      <description>&lt;P&gt;I am talking about a custom extract from blocks attribute values and put in a table. There are hundreds of examples out there, that is why I suggested post a dwg and a resulting table. There are so many options like fixed names of blocks, pick pick pick blocks and so on. A more global answer may be what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Include your dxe.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2023 05:08:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12334680#M22849</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2023-10-27T05:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395693#M22850</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kumar_BhosaleKQTP9_0-1700714646745.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1296402iCB970A79FA8C1706/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kumar_BhosaleKQTP9_0-1700714646745.png" alt="Kumar_BhosaleKQTP9_0-1700714646745.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kumar_BhosaleKQTP9_1-1700714673525.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1296403iDA8755D2683F8542/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kumar_BhosaleKQTP9_1-1700714673525.png" alt="Kumar_BhosaleKQTP9_1-1700714673525.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have attached screenshot of my blocks and table result I am interested in, For your reference also attached. Want to achieve this with the help of lisp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 04:46:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395693#M22850</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-11-23T04:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395932#M22851</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13694210"&gt;@Kumar_BhosaleKQTP9&lt;/a&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;TRY&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;;; https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-table/td-p/7821821
(defun c:TESTCoordinatesBlock (/ ss name ref refs insPt table row)
  (vl-load-com)
  (or *acdoc*
      (setq *acdoc* (vla-get-ActiveDocument (vlax-get-acad-object)))
  )
  (or *blocks*
      (setq *blocks* (vla-get-Blocks *acdoc*))
  )
  (prompt "\nSelect blocks to list or &amp;lt;All&amp;gt;")
  
  
  (or (setq ss (ssget '((0 . "INSERT"))))
      (setq ss (ssget "_X" '((0 . "INSERT") (66 . 1)))
      )
  )

  
  (if ss
    (progn

      (vlax-for	x (setq ss (vla-get-ActiveSelectionSet *acdoc*))

         
	(if (not (vlax-property-available-p x 'Path))
          (progn
            
            (setq attn
                   (vl-remove nil (mapcar '(lambda (v) (IF   (or (= "TP_ID" (vla-get-tagstring v)) (= "BP_ID" (vla-get-tagstring v))) (vla-get-textstring v) )  )
                                (vlax-invoke x 'Getattributes)
                        )) ;_ end of car
            ) ;_ end of setq
            (setq attELEVATION
                   (vl-remove nil (mapcar '(lambda (v) (IF(= "ELEVATION" (vla-get-tagstring v)) (vla-get-textstring v) )  )
                                (vlax-invoke x 'Getattributes)
                        )) ;_ end of car
            ) ;_ end of setq

            (setq ipt (vlax-get x 'InsertionPoint)
                       iptx (car ipt)
                      ipty (cadr ipt)
                    )
            (setq name (vla-get-effectivename x))
	  (setq		refs (cons (list (car attn) iptx ipty (car attELEVATION))  refs) )
            ;(setq		refs nil )
	
	  
          )
	)
      )



      
      (vla-delete ss)
      (initget 1)
      (setq insPt (trans (getpoint "\nInsertion point: ") 1 0))
      (setq table (vla-addtable
		    (vla-get-modelspace *acdoc*)
		    (vlax-3d-point insPt)
		    (+ 2 (length refs))	; number of rows (including title and header)
		    4			; number of colums
		    0.5			; cell height
		    2			; row width
		  )
      )
      
      (vla-put-TitleSuppressed table :vlax-false)
      (vla-put-HeaderSuppressed table :vlax-false)
      (vla-setText table 0 0 "Coordinates")
      (vla-setText table 1 0 name)
      (vla-setText table 1 1 "Position X")
      (vla-SetColumnWidth table 1 2.2 )
      (vla-setText table 1 2 "Position Y")
      (vla-SetColumnWidth table 2 2.2)
      (vla-setText table 1 3 "ELEVATION")
      (setq row 2)
      (foreach item refs
        
	(vla-settext table row 0 (car item))
	(vla-settext table row 1 (cAdr item))
        (vla-settext table row 2 (cADDr item))
	(vla-settext table row 3 (cAdDDr item))
	
	(setq row (1+ row))
      )
    )
  )
  (princ)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&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="7.gif" style="width: 976px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1296449iFE31B2229B9CC94F/image-size/large?v=v2&amp;amp;px=999" role="button" title="7.gif" alt="7.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 08:06:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395932#M22851</guid>
      <dc:creator>hosneyalaa</dc:creator>
      <dc:date>2023-11-23T08:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395946#M22852</link>
      <description>&lt;P&gt;Thank you for the reply but using this I am not able to update table data links.&lt;BR /&gt;If any changes are made to the blocks later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 08:17:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12395946#M22852</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-11-23T08:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: EXTRACT ATTRIBUTE DATA FROM SELECTED BLOCK &amp; CREATE TABLE IN MODEL SPACE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12402361#M22853</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6591997"&gt;@hosneyalaa&lt;/a&gt;&amp;nbsp;Can you help to sort the block in order for the table. It disrupts the order if some blocks are created later.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kumar_BhosaleKQTP9_0-1701080380172.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1297580i8513422BA4182E79/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kumar_BhosaleKQTP9_0-1701080380172.png" alt="Kumar_BhosaleKQTP9_0-1701080380172.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 10:20:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/extract-attribute-data-from-selected-block-amp-create-table-in/m-p/12402361#M22853</guid>
      <dc:creator>Kumar_BhosaleKQTP9</dc:creator>
      <dc:date>2023-11-27T10:20:05Z</dc:date>
    </item>
  </channel>
</rss>

