<?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: Occupancy Calculation in Project data &amp; BIM</title>
    <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371806#M4181</link>
    <description>&lt;P&gt;I assume you are using a expression to do a calculation. But you probably have the data type set to area which will include units. Use STRCALUNIT(value) To convert to a string, then use TextJoin to add any annotation on the end&lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2023 19:18:18 GMT</pubDate>
    <dc:creator>poco2013</dc:creator>
    <dc:date>2023-02-28T19:18:18Z</dc:date>
    <item>
      <title>Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371800#M4180</link>
      <description>&lt;P&gt;I have a custom property that is doing an Occupancy Calculation... Dividing the space area by the Occupancy Load Factor. In a schedule the result of the calculation has SqFt units - What is the most elegant way to remove the units?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 17:39:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371800#M4180</guid>
      <dc:creator>gdford</dc:creator>
      <dc:date>2023-02-28T17:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371806#M4181</link>
      <description>&lt;P&gt;I assume you are using a expression to do a calculation. But you probably have the data type set to area which will include units. Use STRCALUNIT(value) To convert to a string, then use TextJoin to add any annotation on the end&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 19:18:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371806#M4181</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2023-02-28T19:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371809#M4182</link>
      <description>&lt;P&gt;yes - I can make that work.&lt;/P&gt;
&lt;P&gt;I will have to convert it back into a number so I can sum it in a schedule.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 20:22:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371809#M4182</guid>
      <dc:creator>gdford</dc:creator>
      <dc:date>2023-02-28T20:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371819#M4183</link>
      <description>&lt;P&gt;Or set the expression data type as a number and divide your calculation by 1 SqFt&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i.e. &lt;FONT color="#FF0000"&gt;(expression_calculation)/1ft2&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That will change the area to a number, and you won't need to do any string conversions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get rid of any units you divide by 1xunit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 01:10:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371819#M4183</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-01T01:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371822#M4184</link>
      <description>&lt;P&gt;Converting to a raw number is another path which will definitely lead to the same result.&lt;/P&gt;
&lt;P&gt;I assumed that the OP would ultimately want a string annotation on the end as in: "100 person max occupancy"&lt;/P&gt;
&lt;P&gt;In that case, i still think it would be better to directly convert the area cal to a string as strcalunit() automatically lobs off the area units. Then allowing for a direct string join of the annotation on the end.&amp;nbsp;&amp;nbsp; --- six vs half dozen&lt;/P&gt;
&lt;P&gt;However, the OP did mention he wanted to sum the occupants,-- don't know why, in which case converting to a raw number is the only choice.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 01:30:24 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371822#M4184</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2023-03-01T01:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Occupancy Calculation</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371884#M4185</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Yes converting to string and then back to number is what I have done in the past... Just seems like there should be a cleaner built-in way to do this.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 14:48:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Occupancy-Calculation/m-p/371884#M4185</guid>
      <dc:creator>gdford</dc:creator>
      <dc:date>2023-03-01T14:48:31Z</dc:date>
    </item>
  </channel>
</rss>

