<?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 is there a way I can count selected blocks in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433604#M24362</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ahawkinsPMFUA_0-1702312505214.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303432i8145E1BC76CB3AE9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ahawkinsPMFUA_0-1702312505214.png" alt="ahawkinsPMFUA_0-1702312505214.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can count selected blocks in autocad&lt;/P&gt;</description>
    <pubDate>Mon, 11 Dec 2023 16:35:23 GMT</pubDate>
    <dc:creator>ahawkinsPMFUA</dc:creator>
    <dc:date>2023-12-11T16:35:23Z</dc:date>
    <item>
      <title>is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433604#M24362</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ahawkinsPMFUA_0-1702312505214.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303432i8145E1BC76CB3AE9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ahawkinsPMFUA_0-1702312505214.png" alt="ahawkinsPMFUA_0-1702312505214.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can count selected blocks in autocad&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 16:35:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433604#M24362</guid>
      <dc:creator>ahawkinsPMFUA</dc:creator>
      <dc:date>2023-12-11T16:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433617#M24363</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;properties palette for your selected item CTRL+1&lt;/P&gt;
&lt;P&gt;Helpful also function to select objects&amp;nbsp; selectsimilar&amp;nbsp;&lt;/P&gt;
&lt;P&gt;qselect,ssx,filter&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or command COUNT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or dataextraction&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 16:40:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433617#M24363</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2023-12-11T16:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433621#M24364</link>
      <description>&lt;P&gt;I would use a quick LISP statement and see how many objects were selected.&lt;/P&gt;&lt;P&gt;(ssget "X" '((0 . "INSERT"))) will select all inserted blocks.&lt;/P&gt;&lt;P&gt;If you want specific inserts, select them by name using (ssget "X" '((2 . "name of block goes here")))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can retrieve these using "P" in response to a "Select Objects:" prompt.&amp;nbsp; You might also try setting the selections to a variable for easy retrieval after other things have been selected.&lt;/P&gt;&lt;P&gt;(setq SET1 (ssget "X" '((0 . "INSERT"))))&lt;/P&gt;&lt;P&gt;(setq SET2 (ssget "X" '((2 . "put blockname here"))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course this method is old, but very powerful.&amp;nbsp; You can do something like this using filters and just paying attention to the command line for feedback.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 16:44:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433621#M24364</guid>
      <dc:creator>james_moore</dc:creator>
      <dc:date>2023-12-11T16:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433637#M24365</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14812237"&gt;@ahawkinsPMFUA&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;Is there any way I can count selected blocks in autocad&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1702313023246.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303436i72F2C0E793E13D02/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1702313023246.png" alt="pendean_0-1702313023246.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and/or&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_1-1702313077526.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303441i0DEC523504EBC9B3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_1-1702313077526.png" alt="pendean_1-1702313077526.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1702313131207.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303442i8AAF4C8005345C86/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1702313131207.png" alt="pendean_0-1702313131207.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 16:45:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433637#M24365</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2023-12-11T16:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433665#M24366</link>
      <description>&lt;P&gt;I don't understand what the image is supposed to convey.&amp;nbsp; But if you have some things selected [any kind(s) of things], put this in at the Command line, and it will return&amp;nbsp;&lt;EM&gt;how many&lt;/EM&gt; things:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;&lt;STRONG&gt;(sslength (ssget "_I"))&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 16:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12433665#M24366</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-12-11T16:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434286#M24367</link>
      <description>&lt;P&gt;With Quick Select (QSE) you can select among all the blocks in your drawing based on any property you want. In the property palette you will see how many are selected at the top of your property palette.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MichielValcke_0-1702319533962.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303495i26266360C4D1E79F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MichielValcke_0-1702319533962.png" alt="MichielValcke_0-1702319533962.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;There also is an older command FILTER that will allow you to make a filter (you can base it on BlockName or another property) When you select-all afterwards it will only select the items that match your filter and it will tell you in the commandline how many were selected.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MichielValcke_1-1702319586893.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303496iA393674189288AF3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MichielValcke_1-1702319586893.png" alt="MichielValcke_1-1702319586893.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And with the new command COUNT (as already shown by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;) you can get an overview of all the different blocks in your drawing. You can also see similar geometries (which are presumed to be exploded versions of your blocks)&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 18:33:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434286#M24367</guid>
      <dc:creator>Michiel.Valcke</dc:creator>
      <dc:date>2023-12-11T18:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434396#M24368</link>
      <description>&lt;P&gt;&lt;STRONG&gt;(sslength (ssget "_I"))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;That is not a valid AutoLISP statement as far as I know.&amp;nbsp; I thought maybe I just hadn't learned that one yet, but it returned a bad argument type error when I tried it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(sslength (ssget "X" '((0 . "INSERT")))) would work though.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can do a lot with ssget, by changing the "X" and the (0 . "value") syntax appropriately.&amp;nbsp; It's the core selection function; mastering it is equivalent to all the other methods intended to simplify selecting objects with code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 19:37:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434396#M24368</guid>
      <dc:creator>james_moore</dc:creator>
      <dc:date>2023-12-11T19:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434423#M24369</link>
      <description>&lt;P&gt;It is implied selection -&amp;gt; works like pickfirst, you want to have selected some items first. (and have the pickfirst enabled)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MichielValcke_0-1702324086450.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303527i9950C205DCB240E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MichielValcke_0-1702324086450.png" alt="MichielValcke_0-1702324086450.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MichielValcke_1-1702324098592.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303528iC9E84F05FBE4920D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MichielValcke_1-1702324098592.png" alt="MichielValcke_1-1702324098592.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 19:50:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434423#M24369</guid>
      <dc:creator>Michiel.Valcke</dc:creator>
      <dc:date>2023-12-11T19:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434440#M24370</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14812237"&gt;@ahawkinsPMFUA&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way I can count selected blocks in autocad&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That's an open ended question that can be interpreted in a variety of ways as evident by the variety of answers.&amp;nbsp; Here are 2 more interpretations to the question and recommend answers:&lt;/P&gt;&lt;P&gt;Question 1.&amp;nbsp; I have a buncn of blocks selected how can I determine how many?&lt;/P&gt;&lt;P&gt;Answer 1.&amp;nbsp; The properties panel will show the number.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_0-1702324238429.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303529i6F789FD350E0124B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_0-1702324238429.png" alt="leeminardi_0-1702324238429.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Or give a command like move and you will see the number then cancel the command.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_1-1702324303074.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303531i147E108BE0BF59AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_1-1702324303074.png" alt="leeminardi_1-1702324303074.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question 2,&amp;nbsp; I have a bunch of objects selected, some are blocks a sone are not.&amp;nbsp; How many of the slected objects are blocks?&lt;/P&gt;&lt;P&gt;Answer 2.&amp;nbsp; The properties panel will distinguish between blocks and other geometry.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leeminardi_2-1702324454369.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1303532i32359A4433EADD5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="leeminardi_2-1702324454369.png" alt="leeminardi_2-1702324454369.png" /&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 19:55:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434440#M24370</guid>
      <dc:creator>leeminardi</dc:creator>
      <dc:date>2023-12-11T19:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434448#M24371</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3745411"&gt;@james_moore&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;STRONG&gt;(sslength (ssget "_I"))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;That is not a valid AutoLISP statement as far as I know.&amp;nbsp; ...&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It is if there are selected objects at the time, as I described, and as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3754664"&gt;@Michiel.Valcke&lt;/a&gt;&amp;nbsp;has elaborated.&amp;nbsp; I assumed such a condition, from the wording of the topic heading.&amp;nbsp; But I agree that the original question is subject to various interpretations, so some clarity from the OP would help.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 20:02:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434448#M24371</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-12-11T20:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434461#M24372</link>
      <description>&lt;P&gt;Gotcha, now I see it.&amp;nbsp; So I guess you could, for example, "SELECT" "ALL" and then enter (sslength (ssget "_I")) and it will return the number of INSERTs out of your selection set.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 20:10:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434461#M24372</guid>
      <dc:creator>james_moore</dc:creator>
      <dc:date>2023-12-11T20:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434523#M24373</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3745411"&gt;@james_moore&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... I guess you could, for example, "SELECT" "ALL" and then enter (sslength (ssget "_I")) and it will return the number of INSERTs out of your selection set.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That would tell you how many objects &lt;EM&gt;of all kinds&lt;/EM&gt; there are, not just Insert objects.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 20:40:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434523#M24373</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-12-11T20:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434549#M24374</link>
      <description>&lt;P&gt;Ok, tried it, yep I see what you mean.&lt;/P&gt;&lt;P&gt;Now after all that, I fail to see where I might use this... but that's OK.&amp;nbsp; We don't all have to use the same methods. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; I'm unclear on the difference between (ssget "P") and (ssget "I").&amp;nbsp; I mean, if I have to have previously selected entities for either of these to work... I'll have to read the ssget options for the first time in a long, long time I guess.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 20:48:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434549#M24374</guid>
      <dc:creator>james_moore</dc:creator>
      <dc:date>2023-12-11T20:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434671#M24375</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3745411"&gt;@james_moore&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;.... I fail to see where I might use this...&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I agree -- I would just use the Properties palette's report if that's all I wanted to know.&amp;nbsp; But it seemed to be an answer to the question &lt;EM&gt;as asked&lt;/EM&gt;, if I'm interpreting that correctly.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 21:42:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434671#M24375</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-12-11T21:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: is there a way I can count selected blocks</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434684#M24376</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&amp;nbsp; Yeah, we interpreted it differently.&lt;/P&gt;&lt;P&gt;I figured the blocks had to be selected before they could be counted, so that's where I started.&amp;nbsp; You figured he already had them selected and just wanted them counted.&amp;nbsp; My 1985-era method does both in one shot; but I admit it might not be so efficient if you're not a touch-typist.&lt;BR /&gt;&lt;BR /&gt;Whatever works.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 21:48:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-i-can-count-selected-blocks/m-p/12434684#M24376</guid>
      <dc:creator>james_moore</dc:creator>
      <dc:date>2023-12-11T21:48:13Z</dc:date>
    </item>
  </channel>
</rss>

