<?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: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE? in Collaboration with other software</title>
    <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240941#M30976</link>
    <description>Thanks Poco, that seems to have gotten me half way there, but unexpectedly, when there are 2 windows with the same width or length the expression multiplies the length by the quantity...which is not what I want.  Any Idea how to fix this?&lt;BR /&gt;
&lt;BR /&gt;
The way I wrote the expression was super simple.  I just added 2 separate entries in the expression editor, one for Length and the other for Width</description>
    <pubDate>Sun, 26 Apr 2020 15:20:25 GMT</pubDate>
    <dc:creator>Jeff Galbraith</dc:creator>
    <dc:date>2020-04-26T15:20:25Z</dc:date>
    <item>
      <title>SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240939#M30974</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;As has come up in many previous posts Archicad uses 'Width' for Windows, and 'Length' for Curtain Walls, causing graphical issues in Window Schedules.  I was hoping to create an expression based property that returns the value for 'Width' if the object is a window, and 'Length' if the object is a curtain wall.  I tried the following but it didn't work:&lt;BR /&gt;
&lt;BR /&gt;
IF (Length &amp;gt; 0, Length, Width)&lt;BR /&gt;
&lt;BR /&gt;
Unfortunately it didn't work.  Any ideas of how to make this work.&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 26 Apr 2020 04:51:30 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240939#M30974</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-26T04:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240940#M30975</link>
      <description>Your expression will not work because you are using a attribute which is not applicable to the element being evaluated.&lt;BR /&gt;
That is you are using in the same expression, both length and width . Width can only be used for windows, etc. and length for curtain walls. -- As you have said. So, any window or curtain wall which sees both attributes will mark one or the other as not applicable and fail.&lt;BR /&gt;
&lt;BR /&gt;
The solution is to make two separate sequences (expressions) in the same expression using the ADD button,&lt;BR /&gt;
One which will apply only to windows and one which will apply only to curtain walls.  In evaluating the expression, the program will only use the applicable sequence for the correct element.&lt;BR /&gt;
&lt;BR /&gt;
FYI: make sure you have correctly set the classifications for both elements.</description>
      <pubDate>Sun, 26 Apr 2020 05:25:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240940#M30975</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-26T05:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240941#M30976</link>
      <description>Thanks Poco, that seems to have gotten me half way there, but unexpectedly, when there are 2 windows with the same width or length the expression multiplies the length by the quantity...which is not what I want.  Any Idea how to fix this?&lt;BR /&gt;
&lt;BR /&gt;
The way I wrote the expression was super simple.  I just added 2 separate entries in the expression editor, one for Length and the other for Width</description>
      <pubDate>Sun, 26 Apr 2020 15:20:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240941#M30976</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-26T15:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240942#M30977</link>
      <description>It would seem as though expressions have a 'summation' quality built into them when multiple items meet the criteria, which does not appear to be readily overridable.  It also does not appear that I can reference the 'quantity' of similar elements.  if I could reference the quantity then it would be simple to divide the Length &amp;amp; width parameters by the quantity to negate the impact of the built-in summation process.  Is that possible?</description>
      <pubDate>Sun, 26 Apr 2020 16:38:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240942#M30977</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-26T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240943#M30978</link>
      <description>Expressions only have knowledge of the properties of the object they are attached to. They can not sum multiple elements even if they are identical. &lt;BR /&gt;
&lt;BR /&gt;
I'm guessing the problem is with your schedule criteria. Would need to see your expression formula(s) and the schedule criteria Screen shots</description>
      <pubDate>Sun, 26 Apr 2020 17:10:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240943#M30978</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-26T17:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240944#M30979</link>
      <description>It is most definitely adding them together.  I just rebuilt the scenario in a standalone file with nothing in it but a wall, 2 windows and 2 identical curtain wall elements. The schedule criteria was minimized to avoid potential conflicts.  See screenshots below.</description>
      <pubDate>Sun, 26 Apr 2020 21:10:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240944#M30979</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-26T21:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240945#M30980</link>
      <description>...even if you reduce the expression definition down to a single entry for either width or length it still sums up the width of all identical elements.  Seems like a bug.  I see no reason that the attribute 'Width' would be treated one way when used in a schedule directly, but treated quite differently when used via an expression.</description>
      <pubDate>Sun, 26 Apr 2020 21:14:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240945#M30980</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-26T21:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240946#M30981</link>
      <description>The expressions are being summed within the the schedule not the expressions because you have "merge uniform items checked"&lt;BR /&gt;
&lt;BR /&gt;
You could change the ID's to be different or Just change the expression to return a string instead of a number.&lt;BR /&gt;
&lt;BR /&gt;
STR ( {Property:General Parameters/Width} / 1 ft, 2 ) -- returning string&lt;BR /&gt;</description>
      <pubDate>Sun, 26 Apr 2020 22:40:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240946#M30981</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-26T22:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240947#M30982</link>
      <description>That's definitely progress!  Is there a way to convert the string output from decimal units into feet and inches?</description>
      <pubDate>Mon, 27 Apr 2020 00:33:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240947#M30982</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-27T00:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240948#M30983</link>
      <description>In Calculation Units and Rules -- change length units t0 ft &amp;amp; fractional in -- Change STR tp STRCALCUNIT and drop units canceling&lt;BR /&gt;
&lt;BR /&gt;
STRCALCUNIT ( {Property:General Parameters/Width} )&lt;BR /&gt;
&lt;BR /&gt;
Unfortunately, this changes the units for all expressions and schedules -- no way around this -- for now</description>
      <pubDate>Mon, 27 Apr 2020 01:37:01 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240948#M30983</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-27T01:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240949#M30984</link>
      <description>I appreciate all your help Gerry.  That sound like a deal breaker though...as I imagine changing the units in all tables would have unwanted consequences...&lt;BR /&gt;
&lt;BR /&gt;
What I still don't understand is why the property values get added together for identical items when the property is an expression.  The schedule clearly does NOT add together the values that are returned by the basic 'Width' and 'Length' parameters, even with the 'Merge Uniform Item' option checked.  It only happens in the column driven by the expression.&lt;BR /&gt;
&lt;BR /&gt;
I would have expected the schedule to not know the difference, and not discriminate between data returned from the basic property 'Width', and data returned from the exact same element attribute delivered through the use of an expression simply pointing to that very same property.  &lt;BR /&gt;
&lt;BR /&gt;
ie:  If 'Width' = 10, and 'Expression (Width)' also = 10...why does the schedule multiply 'Expression (Width)' x 'Quantity', but not 'Width' x Quantity?&lt;BR /&gt;
&lt;BR /&gt;
Perplexing...</description>
      <pubDate>Mon, 27 Apr 2020 01:56:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240949#M30984</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-27T01:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240950#M30985</link>
      <description>Schedules are not multiplying quantity times width but simply adding similar (identical) numbers. Probably width and length were actually converted to strings internally so they would not sum.&lt;BR /&gt;
&lt;BR /&gt;
IOW -- this is a bug -- somebody forgot about expressions and the schedule is quantifying expressions. There are many other instances in which this is desirable. A switch was probably too much trouble for the programmer or someone thought it would be too confusing?</description>
      <pubDate>Mon, 27 Apr 2020 02:34:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240950#M30985</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-27T02:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240951#M30986</link>
      <description>There are times when I have wanted to convert decimal numbers into Feet and inches in excel and I have done it with a series of cells and equations that look something like this:&lt;BR /&gt;
&lt;BR /&gt;
CELL 1:  10.70833 (feet)&lt;BR /&gt;
&lt;BR /&gt;
CELL 2: 'INT (CELL 1)' returns 10&lt;BR /&gt;
&lt;BR /&gt;
CELL 3: '(CELL 1 - CELL 2)' returns 0.70833 (decimal feet remand to be converted into inches)&lt;BR /&gt;
&lt;BR /&gt;
CELL 4: '(CELL 3) x 12' = 8.5&lt;BR /&gt;
&lt;BR /&gt;
CELL 5 is a string of values from other cells and added text for expression of the units...such as:&lt;BR /&gt;
&lt;BR /&gt;
           ( (CELL 2) "feet" (CELL 4) "inches")  and returns: 10 feet 8.5 inches&lt;BR /&gt;
&lt;BR /&gt;
Is it possible to script something like this into the expression editor...potentially using several co-dependent properties..where each cell noted above is a different property?</description>
      <pubDate>Mon, 27 Apr 2020 16:27:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240951#M30986</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-27T16:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240952#M30987</link>
      <description>...sidenote...when a bug is discovered like this, do I report it, or is that something you do as a moderator?</description>
      <pubDate>Mon, 27 Apr 2020 16:28:40 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240952#M30987</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-27T16:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240953#M30988</link>
      <description>&lt;BLOCKQUOTE&gt;Jeff wrote:&lt;BR /&gt;
...sidenote...when a bug is discovered like this, do I report it, or is that something you do as a moderator?
&lt;/BLOCKQUOTE&gt;

There have been no moderators in this thread... until now &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/E&gt;  But, moderators only moderate this forum - delete spam, move posts to proper forums, merger threads, etc.   At times, someone from Graphisoft may notice a bug here - but you should always report yourself through your local support.&lt;BR /&gt;
&lt;BR /&gt;
Cheers,&lt;BR /&gt;
Karl&lt;BR /&gt;
&lt;BR /&gt;
PS For the decimal to FFI example, even in Excel there is no need to stretch the conversion across so many cells.  One formula will suffice.</description>
      <pubDate>Mon, 27 Apr 2020 18:04:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240953#M30988</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2020-04-27T18:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240954#M30989</link>
      <description>Assuming that Calculation units are set in decimal ft -- you could do the conversion and output a string in one expression. AS IN some version of:&lt;BR /&gt;
&lt;BR /&gt;
TEXTJOIN ( " ", TRUE, STR ( ROUNDDOWN ( {Property:General Parameters/Width} / 1 ft, 0 ), 0 ), "FT", TEXTJOIN ( " ", TRUE, STR ( MOD ( {Property:General Parameters/Width} / 1 ft, 1 ) * 12, 0 ), "in" ) )&lt;BR /&gt;
&lt;BR /&gt;
However expressions have no way of knowing what the cal units setting is -- if set on something else -- would not work.</description>
      <pubDate>Mon, 27 Apr 2020 18:34:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240954#M30989</guid>
      <dc:creator>poco2013</dc:creator>
      <dc:date>2020-04-27T18:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240955#M30990</link>
      <description>The only way to avoid the automatic summation of some fields, is to turn off the schedule option to "Merge Uniform Items", so they all list separately.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Tue, 28 Apr 2020 01:02:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240955#M30990</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2020-04-28T01:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240956#M30991</link>
      <description>And yet the schedule does NOT automatically sum the values of any of the other fields / properties...just the ones that are based on expressions...inconsistent programming.</description>
      <pubDate>Wed, 29 Apr 2020 15:00:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240956#M30991</guid>
      <dc:creator>Jeff Galbraith</dc:creator>
      <dc:date>2020-04-29T15:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240957#M30992</link>
      <description>&lt;BLOCKQUOTE&gt;Jeff wrote:&lt;BR /&gt;
...sidenote...when a bug is discovered like this, do I report it, or is that something you do as a moderator?
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
I will report this to GRAPHISOFT so they are aware of it.</description>
      <pubDate>Wed, 29 Apr 2020 19:55:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240957#M30992</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2020-04-29T19:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: SCHEDULE EXPRESSIONS - SOLUTION TO WINDOW WIDTH ISSUE?</title>
      <link>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240958#M30993</link>
      <description>&lt;BLOCKQUOTE&gt;Jeff wrote:&lt;BR /&gt;
And yet the schedule does NOT automatically sum the values of any of the other fields / properties...just the ones that are based on expressions...inconsistent programming.
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
Not just expressions.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://archicad-talk.graphisoft.com/viewtopic.php?f=28&amp;amp;t=69085&amp;amp;p=307003&amp;amp;hilit=schedule#p307003" target="_blank"&gt;&lt;LINK_TEXT text="viewtopic.php?f=28&amp;amp;t=69085&amp;amp;p=307003&amp;amp;hil ... le#p307003"&gt;https://archicad-talk.graphisoft.com/viewtopic.php?f=28&amp;amp;t=69085&amp;amp;p=307003&amp;amp;hilit=schedule#p307003&lt;/LINK_TEXT&gt;&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Thu, 30 Apr 2020 00:48:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Collaboration-with-other/SCHEDULE-EXPRESSIONS-SOLUTION-TO-WINDOW-WIDTH-ISSUE/m-p/240958#M30993</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2020-04-30T00:48:10Z</dc:date>
    </item>
  </channel>
</rss>

