<?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: QuickSelect points by attribute (Code) in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229619#M168433</link>
    <description>&lt;P&gt;Since it appears that each point object that you want to select is near 2 other objects which may be unrelated by layer or color or time of position within the database, it would seem only possible to do with a custom program that would make a collection of text with the attributes desired and then scan for points near those attributes with the hope that the closest point would relate to that attribute.&lt;/P&gt;
&lt;P&gt;If you want to continue using AutoCAD rather than Map, I suggest building blocks that truly have attributes along with the other geometry. Then dataextraction is easy and can be filtered.&amp;nbsp; Building a custom program to filter blocks by attribute values and return a selection set would be trivial compared to your current task.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Aug 2018 12:28:13 GMT</pubDate>
    <dc:creator>dbroad</dc:creator>
    <dc:date>2018-08-28T12:28:13Z</dc:date>
    <item>
      <title>QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229479#M168429</link>
      <description>&lt;P&gt;Hello. I want to know if there is a way in autocad to quick select points by one of their attribute values (Such as Code).&lt;/P&gt;&lt;P&gt;In the picture below I hope you will understand what I want to select.&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="1.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/539836i05861D8327594AA4/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 11:31:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229479#M168429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-28T11:31:59Z</dc:date>
    </item>
    <item>
      <title>Betreff: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229511#M168430</link>
      <description>Program extension or just command FIND, check the available options there.</description>
      <pubDate>Tue, 28 Aug 2018 11:47:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229511#M168430</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2018-08-28T11:47:42Z</dc:date>
    </item>
    <item>
      <title>Betreff: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229538#M168431</link>
      <description>&lt;P&gt;If i use the FIND function it only selects the Text whilst i need the point with the attribute IP to be selected&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 12:01:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229538#M168431</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-28T12:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229562#M168432</link>
      <description>&lt;P&gt;If you want to select all blocks where the attribute COD = IP I don't know a way in Vanilla AutoCAD. You &lt;EM&gt;can&lt;/EM&gt; however, successfully do it in Map 3D by running a query which would focus on an attribute of your choice and isolate, or select, only those blocks where there attribute equals IP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The closest operation in Vanilla AutoCAD would be DATAEXTRACTON command&amp;nbsp;where you run a wizard on&amp;nbsp;the properties of&amp;nbsp;blocks in your drawing and end up with a spreadsheet. The wizard has 8 windows, or pages, and at the end, you can end up with a spreadsheet with&amp;nbsp;columns.&amp;nbsp;The spreadsheet could easily be customized to include&amp;nbsp;properties&amp;nbsp;such as: Block name,&amp;nbsp;x-position, y-position, DENPCT, COTA, COD, layer.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 12:08:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229562#M168432</guid>
      <dc:creator>ChicagoLooper</dc:creator>
      <dc:date>2018-08-28T12:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229619#M168433</link>
      <description>&lt;P&gt;Since it appears that each point object that you want to select is near 2 other objects which may be unrelated by layer or color or time of position within the database, it would seem only possible to do with a custom program that would make a collection of text with the attributes desired and then scan for points near those attributes with the hope that the closest point would relate to that attribute.&lt;/P&gt;
&lt;P&gt;If you want to continue using AutoCAD rather than Map, I suggest building blocks that truly have attributes along with the other geometry. Then dataextraction is easy and can be filtered.&amp;nbsp; Building a custom program to filter blocks by attribute values and return a selection set would be trivial compared to your current task.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 12:28:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/8229619#M168433</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2018-08-28T12:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/11988349#M168434</link>
      <description>&lt;UL&gt;&lt;LI&gt;ENTER&lt;STRONG&gt; 'FIND'&lt;/STRONG&gt; COMMAND&lt;/LI&gt;&lt;LI&gt;UNDER THE &lt;STRONG&gt;'FIND WHAT'&lt;/STRONG&gt; LINE, ENTER YOUR ATRIBUTE NAME (E.G. IP)&lt;/LI&gt;&lt;LI&gt;SELECT THE &lt;STRONG&gt;'LIST RESULTS TICK BOX'&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;CLICK THE EXTEND WIDOW ARROW AT THE BOTTOM OF THE WINDOW&lt;/LI&gt;&lt;LI&gt;UNDER THE &lt;STRONG&gt;'TEXT TYPES SECTION' &lt;/STRONG&gt;SELECT &lt;STRONG&gt;' BLOCK ATRIBULTE VALUE'&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;IN THE SEARCH OPTIONS I LIKE TO KEEP&lt;STRONG&gt; 'SEARCH BLOCKS&lt;/STRONG&gt;' AND SEACH &lt;STRONG&gt;'XREFS'&lt;/STRONG&gt; TICKED&lt;/LI&gt;&lt;LI&gt;CLICK &lt;STRONG&gt;'FIND'&lt;/STRONG&gt; AND A LIST OF YOUR FILTERS POINTS WILL APPEAR&lt;/LI&gt;&lt;LI&gt;AT THE SIDE OF THE WIDOW SELECT &lt;STRONG&gt;'CREATE SELECTION SET (ALL)'&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;HOPE THIS HELPS&amp;nbsp; : )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 11:02:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/11988349#M168434</guid>
      <dc:creator>connordaly2001</dc:creator>
      <dc:date>2023-05-25T11:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: QuickSelect points by attribute (Code)</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/12206336#M168435</link>
      <description>&lt;P&gt;THIS IS HELPUL!&lt;BR /&gt;BUT WHEN YOU FIND THE POINTS YOU WANT HOW DO YOU COPY OR CUT THEM ?&lt;BR /&gt;I ASK BECAUSE WHEN I SELECT THEM FROM 'CREATE SELECTION SET (ALL)' IT SELECTS ONLY THE DECRIPTIONS BUT NOT THE POINTS.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 09:17:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quickselect-points-by-attribute-code/m-p/12206336#M168435</guid>
      <dc:creator>annamariapapoutsi</dc:creator>
      <dc:date>2023-08-30T09:17:45Z</dc:date>
    </item>
  </channel>
</rss>

