<?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>tema Re: Calculating numeros text statistics en AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412512#M1015230</link>
    <description>&lt;P&gt;Well, there is no other solution than write a program that will do that.&lt;/P&gt;
&lt;P&gt;And you're not even capable to search how to use it. So. Sorry that I wrote that program, I should not.&lt;/P&gt;</description>
    <pubDate>Tue, 31 Mar 2020 15:58:56 GMT</pubDate>
    <dc:creator>ВeekeeCZ</dc:creator>
    <dc:date>2020-03-31T15:58:56Z</dc:date>
    <item>
      <title>Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412242#M1015207</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have this layer, with numeros text objects and I´m trying to figure out statistics about them&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="amosweislib_0-1585663279549.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/747900iF2BF5999F6117994/image-size/medium?v=v2&amp;amp;px=400" role="button" title="amosweislib_0-1585663279549.png" alt="amosweislib_0-1585663279549.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;here I want to calculate Max, Min and Average of the selected texts&lt;/P&gt;&lt;P&gt;Anybody knows how do I do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 14:02:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412242#M1015207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-31T14:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412294#M1015210</link>
      <description>&lt;P&gt;Yes, learn to program! Prob the simplest would be a LISP:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)
  
(defun c:&lt;STRONG&gt;TextStats&lt;/STRONG&gt; ( / lst)
  (if (and (setq lst (ssget '((0 . "TEXT"))))
	   (setq lst (mapcar '(lambda (x) (distof (cdr (assoc 1 (entget x))))) (vl-remove-if 'listp (mapcar 'cadr (ssnamex lst))))))
    (princ (strcat "\nMin: " (vl-princ-to-string (apply 'min lst)) " - Max: " (vl-princ-to-string (apply 'max lst)) " - Avr: " (rtos (/ (apply '+ lst) (float (length lst))) 2 3))))
  (princ)
  )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 14:21:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412294#M1015210</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-03-31T14:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412323#M1015214</link>
      <description>&lt;P&gt;Hey, Thanks for the reply!&lt;/P&gt;&lt;P&gt;I'm struggling a bit with your solution,&lt;/P&gt;&lt;P&gt;Iv'e put your code in the command line and nothing turned out,&lt;/P&gt;&lt;P&gt;I guess that's not the way to do it&lt;/P&gt;&lt;P&gt;could you please be more specific?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I must say that I usually dont work with CAD so I'm not really from that world&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 14:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412323#M1015214</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-31T14:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412343#M1015215</link>
      <description>&lt;P&gt;How about use google to learn how to run a LISP ?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;http://www.lee-mac.com/runlisp.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 14:43:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412343#M1015215</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-03-31T14:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412445#M1015222</link>
      <description>&lt;P&gt;Jeez, what´s with the attitude?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Whatever,&lt;/P&gt;&lt;P&gt;thanks for your help&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 15:22:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412445#M1015222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-31T15:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412512#M1015230</link>
      <description>&lt;P&gt;Well, there is no other solution than write a program that will do that.&lt;/P&gt;
&lt;P&gt;And you're not even capable to search how to use it. So. Sorry that I wrote that program, I should not.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 15:58:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412512#M1015230</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-03-31T15:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating numeros text statistics</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412833#M1015253</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;There is another option available that doesn't require you to learn a programming language. If you are familiar with excel the calculations are pretty easy to do. The max, min and average functions are straight forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. use the dataextraction wizard to extract the values by layer to an xls file.&lt;/P&gt;&lt;P&gt;2. open the xls file and add your functions.&lt;/P&gt;&lt;P&gt;3. You can also import the data into a table within autocad and add formulas at the bottom. (something to explore)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 17:53:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/calculating-numeros-text-statistics/m-p/9412833#M1015253</guid>
      <dc:creator>R_Tweed</dc:creator>
      <dc:date>2020-03-31T17:53:40Z</dc:date>
    </item>
  </channel>
</rss>

