<?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: trying to get zone to list area sf multplied by a parame in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80754#M30933</link>
    <description>Have a look at the STR-command. You have to use the version with formatting string. It allows to output other than metric values.&lt;BR /&gt;
Internal AC works metric only. Even if you insert a ft-value (depending of your general project settings) in an infield the parameter will immediately change it to metric.</description>
    <pubDate>Tue, 26 Jun 2007 07:55:15 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2007-06-26T07:55:15Z</dc:date>
    <item>
      <title>trying to get zone to list area sf multplied by a parameter</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80749#M30928</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;&lt;B&gt;I'm starting out with a zone tag that will put in the area surrounded by a box and the following is part of the code&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
if area then&lt;BR /&gt;
  n=n+1&lt;BR /&gt;
  vlen =vlen + shight&lt;BR /&gt;
  Text2 middle, -vlen, room_area&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;I thought I'd just add some more code where  xx_rsf = room_area* parameter. The problem is I cant multiply room_area by a parameter! How do I accomplish this&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
if show_rsf then&lt;BR /&gt;
  n=n+1&lt;BR /&gt;
  vlen =vlen + shight&lt;BR /&gt;
  Text2 middle, -vlen, xx_rsf&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
michele&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 23 Jun 2007 03:46:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80749#M30928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-06-23T03:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get zone to list area sf multplied by a parame</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80750#M30929</link>
      <description>You can use the somewhat confusing STR command to "convert" the erroneous string into one that will allow multiplying.</description>
      <pubDate>Sat, 23 Jun 2007 10:05:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80750#M30929</guid>
      <dc:creator>Aussie John</dc:creator>
      <dc:date>2007-06-23T10:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get zone to list area sf multplied by a parame</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80751#M30930</link>
      <description>John,&lt;BR /&gt;
&lt;BR /&gt;
I think you mean the SPLIT command. That's what will extract numbers from strings. STR makes formated strings from numbers.</description>
      <pubDate>Sat, 23 Jun 2007 23:50:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80751#M30930</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-06-23T23:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get zone to list area sf multplied by a parame</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80752#M30931</link>
      <description>There must be another problem in your script. &lt;A href="http://www.selfgdl.de/9_diverse/globals/ZONE/kompendium.php?glob=ROOM_AREA" target="_blank"&gt;ROOM_AREA&lt;/A&gt;in zone stamps is numeric type (real) and can be multiplicated with other numeric values and variables/parameters.</description>
      <pubDate>Mon, 25 Jun 2007 06:15:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80752#M30931</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2007-06-25T06:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get zone to list area sf multplied by a parame</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80753#M30932</link>
      <description>rsf_123=(room_area)*rsfmul&lt;BR /&gt;
rsf_123 = rsf_123 + area_unit&lt;BR /&gt;
&lt;BR /&gt;
and then further down the code:&lt;BR /&gt;
&lt;BR /&gt;
if area then&lt;BR /&gt;
  n=n+1&lt;BR /&gt;
  vlen =vlen + shight&lt;BR /&gt;
  Text2 middle, -vlen, room_area&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
if show_rsf then&lt;BR /&gt;
  n=n+1&lt;BR /&gt;
  vlen =vlen + shight&lt;BR /&gt;
  Text2 middle, -vlen, rsf_123&lt;BR /&gt;
&lt;BR /&gt;
I don't get an error now that I put parenthesis around room_area before I multiplied it to the parameter rsfmul ... but my numbers are all wrong. For a 50 ft sf area the rsf_123 that is being displayed in the zone tag in 2D is 5.34192 without the sf after it. And the rsfmul parameter = 1.15. So I want the zone tag to get the sf from the zone tag then look at the parameter rsfmul and multiply it by it then display that number with SF after it in the zone tag in plan.&lt;BR /&gt;
&lt;BR /&gt;
Such a simple task yet so tricky&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all your help,&lt;BR /&gt;
Michele</description>
      <pubDate>Tue, 26 Jun 2007 03:50:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80753#M30932</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-06-26T03:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: trying to get zone to list area sf multplied by a parame</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80754#M30933</link>
      <description>Have a look at the STR-command. You have to use the version with formatting string. It allows to output other than metric values.&lt;BR /&gt;
Internal AC works metric only. Even if you insert a ft-value (depending of your general project settings) in an infield the parameter will immediately change it to metric.</description>
      <pubDate>Tue, 26 Jun 2007 07:55:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/trying-to-get-zone-to-list-area-sf-multplied-by-a-parameter/m-p/80754#M30933</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2007-06-26T07:55:15Z</dc:date>
    </item>
  </channel>
</rss>

