<?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: Doesnt always update Mass on drawing in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12142219#M294196</link>
    <description>&lt;P&gt;Hi! The behavior captured in the images does not look right to me. If possible, please share the files with me directly &lt;A href="mailto:johnson.shiue@autodesk.com" target="_blank"&gt;johnson.shiue@autodesk.com&lt;/A&gt;. I would like to understand the behavior better.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 19:48:38 GMT</pubDate>
    <dc:creator>johnsonshiue</dc:creator>
    <dc:date>2023-08-01T19:48:38Z</dc:date>
    <item>
      <title>Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6813187#M294180</link>
      <description>&lt;P&gt;Inventor 2015 Professional.&lt;/P&gt;&lt;P&gt;We have a re occurring issue in that the Drawing doesn't always display the Mass. Our current work around is to open the model, open&amp;nbsp;iproperties the mass is already populated and without doing anything close the iproperties&amp;nbsp;within the model and close it. The mass then updates on the drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within Inventor application options, we have enabled the Update physical properties on save for parts and assemblies.&lt;/P&gt;&lt;P&gt;We have spoken with our Autodesk re seller&amp;nbsp;who we have a support contract with and they agreed the properties on the drawing is correct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a illogic code that we can use to refresh the iproperties on save.&lt;/P&gt;&lt;P&gt;Open to any other suggestions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 12:28:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6813187#M294180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-18T12:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6813398#M294181</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/P&gt;
&lt;P&gt;I 'm not sure if you're talking about the mass property in drawing environment, which sometimes is displaying "N/A" in the title block ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, try this code, I think it should do the job anyway.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;For several parts in drawing environment&lt;/SPAN&gt;&lt;SPAN&gt;
'&lt;/SPAN&gt;&lt;SPAN&gt;update mass to avoid the "N/A" in title block&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oApp&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Application&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;oApp&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;&lt;SPAN&gt;:  &lt;/SPAN&gt;&lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oApp&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSheets&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sheets&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sheet&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oViews&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oView&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingView&lt;/SPAN&gt;
&lt;SPAN&gt;oSheets&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Sheets&lt;/SPAN&gt;
&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oSheets&lt;/SPAN&gt;
    &lt;SPAN&gt;oViews&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oView&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oViews&lt;/SPAN&gt;
        &lt;SPAN&gt;modelName&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;  &lt;SPAN&gt;oView&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ReferencedDocumentDescriptor&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ReferencedDocument&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DisplayName&lt;/SPAN&gt;
        &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Mass&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;modelName&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;1&lt;/SPAN&gt; &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;override automatic calculation&lt;/SPAN&gt;
        &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Mass&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;modelName&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt; &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;set it back to automatic calculation&lt;/SPAN&gt;
        &lt;SPAN&gt;mass&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Mass&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;modelName&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;force to read the property&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DocumentUpdate&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt; &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;update drawing&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 13:47:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6813398#M294181</guid>
      <dc:creator>ThomasB44</dc:creator>
      <dc:date>2017-01-18T13:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6815826#M294182</link>
      <description>&lt;P&gt;Hi Thomas, you are right. When the mass doesn't update it displays N/A on the drawing using the mass property field.&lt;/P&gt;&lt;P&gt;However by opening and closing&amp;nbsp;the iproperties this refreshes the mass, without the need to update the mass in the iproperties as this is already displayed. When you reopen the drawing the mass is then displayed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Carl&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 11:28:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6815826#M294182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T11:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6815974#M294183</link>
      <description>&lt;P&gt;In my 2014 version, I MUST click on the update button in the iProperties window to refresh the mass.&lt;/P&gt;
&lt;P&gt;Perhaps it is not the case in your 2015 version ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you try the rule I gave ?&lt;/P&gt;
&lt;P&gt;This should do the trick and work with multiple sheets and parts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="bebaf231-f393-460f-bc08-44ecb74b7395" class="myscreencast-iframe iframe-container active-myscreencast"&gt;&lt;IFRAME src="https://screencast.autodesk.com/Embed/Timeline/bebaf231-f393-460f-bc08-44ecb74b7395" width="640" height="680" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" style="display: inline;"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Jan 2017 12:48:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6815974#M294183</guid>
      <dc:creator>ThomasB44</dc:creator>
      <dc:date>2017-01-19T12:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6816882#M294184</link>
      <description>&lt;P&gt;Have you tried in Tools Tab &amp;gt; Application Options &amp;gt; Physical Properties Section &amp;gt; checking the "Update physical properties on save" and use Parts and assemblies radio button?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 17:12:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6816882#M294184</guid>
      <dc:creator>blandb</dc:creator>
      <dc:date>2017-01-19T17:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6818699#M294185</link>
      <description>&lt;P&gt;You're right blandb, this option and the save command should update the mass property.&lt;/P&gt;
&lt;P&gt;But sometimes you don't want to switch again and again between drawing, parts, and/or assemblies.&lt;/P&gt;
&lt;P&gt;So a rule in the drawing environment is an other simply way.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2017 08:08:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/6818699#M294185</guid>
      <dc:creator>ThomasB44</dc:creator>
      <dc:date>2017-01-20T08:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/9808036#M294186</link>
      <description>&lt;P&gt;Don't know if this helps anyone, but I had a similar problem with Configuration Factories/Members.&lt;/P&gt;&lt;P&gt;I had to manually run a custom property mass rule in a&amp;nbsp;&lt;EM&gt;member&lt;/EM&gt; in order for the drawing titleblock mass to update correctly.&amp;nbsp; (Notice you cannot add Event Triggers to members)...Or maybe I just need to regenerate the members again from the factory with the rule in it now.&lt;/P&gt;&lt;P&gt;Looks like my drawing Base View was based off the configuration&amp;nbsp;&lt;EM&gt;member &lt;/EM&gt;(which might have been a poor choice by us--probably should be the factory).&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:58:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/9808036#M294186</guid>
      <dc:creator>SER4</dc:creator>
      <dc:date>2020-10-16T21:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/9808047#M294187</link>
      <description>&lt;P&gt;Hi! Another option is to always keep mass up-to-date. Go to Tools -&amp;gt; App Options -&amp;gt; General -&amp;gt; Physical properties -&amp;gt; check "Update physical properties on save." The parts and assemblies will always have updated mass prop.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 22:19:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/9808047#M294187</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-10-16T22:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10202671#M294188</link>
      <description>&lt;P&gt;Unfortunately,&amp;nbsp;&lt;SPAN&gt;Tools -&amp;gt; App Options -&amp;gt; General -&amp;gt; Physical properties -&amp;gt; check "Update physical properties on save - Parts and Assemblies" does NOT update Mass in Drawing Environment in the Title Block.This at least applies to Assemblies. I'm not sure about individual parts, but I don't remember having issues with individual part mass updating. I always got N/A instead, even if just a part name changed, no physical property. I had to go to iproperty and refresh mass that way. It was so frustrating that I added an "Update Mass" shortcut on the Ribbon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Recently I realized that mass can update upon saving the file and so all I do is open the assembly and save it and mass in Title Block is then updated also. Go to Application Options -&amp;gt; Save -&amp;gt; Mass property update -&amp;gt; Select "Save"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I haven't tried the iLogic, but I do wish this process was automatic and "Update physical properties on save" would work well for assemblies also!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 17:40:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10202671#M294188</guid>
      <dc:creator>emanuel.c</dc:creator>
      <dc:date>2021-03-31T17:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10202773#M294189</link>
      <description>&lt;P&gt;Hi Emanuel,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Indeed, the two sets of options may fight each other. If the file save option is not turned on, it will not be saved regardless.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Mar 2021 18:30:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10202773#M294189</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2021-03-31T18:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10597904#M294190</link>
      <description>&lt;P&gt;We are using Inv Pro 2018.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried running the code above and get this error;&amp;nbsp; "Object reference not set to an instance of an object." at the line:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN&gt;Mass&lt;/SPAN&gt; (&lt;SPAN&gt;modelName&lt;/SPAN&gt;) = 1 &lt;SPAN&gt;'override automatic calculation&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Can someone explain what this error means?&amp;nbsp; I am not a programmer and a beginner at iLogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 19:56:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/10597904#M294190</guid>
      <dc:creator>Clo-z-nuff_2</dc:creator>
      <dc:date>2021-09-03T19:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12132357#M294191</link>
      <description>&lt;P&gt;Having to constantly update the mass manually on drawings is very annoying - switch back to the part, change to the Manage tab, click on Update Mass, change back to the drawing tab. And then I often forget to do it when exporting to PDF, so have to go back and do it all again. Very poor workflow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even worse with Part Factory parts - it's not enough to update the mass in the part factory, I need to manually open the derived part and update the mass there - even more steps to the workflow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having an option to auto update would increase productivity tremendously - really, it's something we shouldn't even have to think about.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Writing iLogic scripts is great for specific use cases, but this is such a basic function, I would like to see it as a standard feature.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 00:09:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12132357#M294191</guid>
      <dc:creator>mark_francis</dc:creator>
      <dc:date>2023-07-28T00:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12134455#M294192</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you try turning on the option mentioned above (Tools -&amp;gt; App Options -&amp;gt; General -&amp;gt; Update physical properties on save -&amp;gt; select Part and Assembly)?&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 20:54:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12134455#M294192</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2023-07-28T20:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12137188#M294193</link>
      <description>&lt;P&gt;Hi Johnson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. Yes of course, I have this option enabled. But even this feature does not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, in my part &amp;amp; assembly templates, I have a general annotation that displays the mass in the lower right hand corner of the window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Every time I made a change, this annotation displays N/A. &lt;FONT color="#FF6600"&gt;If I save the part/assembly, the annotation still displays N/A - &lt;STRONG&gt;it does not update on save!!&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;Only when I "Update Mass" does the annotation display the mass.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At least with parts &amp;amp; assemblies I can have the "Update Mass" command on a floading custom user ribbon palette, so it's only one click away. This is not possible with drawings, as the "Update Mass" command is disabled, so we are forced to go back to the part/assembly, manually update the mass, and then return to the drawing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would love to see a global option to "Always update mass". As a comparison, surely updating the mass is less computationaly expensive than calculating the constraints in an assembly for example, and this is something that has a global option (Application Options/Assembly/Defer Update).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps I need to add an enhancement request to Inventor Ideas&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&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;Regards,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-07-31 08 09 30.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1247037iE7A9758D4520DEA2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-07-31 08 09 30.png" alt="2023-07-31 08 09 30.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-07-31 08 18 19.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1247038i9669CB76F9635AD5/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-07-31 08 18 19.png" alt="2023-07-31 08 18 19.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jul 2023 22:27:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12137188#M294193</guid>
      <dc:creator>mark_francis</dc:creator>
      <dc:date>2023-07-30T22:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12138235#M294194</link>
      <description>&lt;P&gt;Yes sometimes, even just re-opening the drawing would show N/A for Mass. Right click and update would sometimes work but sometimes I had to open the assembly and re-save it for Mass to update, even though nothing had changed since it was previously opened.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you're asking for makes perfect sense. I gave up on it and since I run some iLogic code on all parts / assemblies anyway I added code to create an iProperty which stores the Mass value. I then use this iProperty wherever Mass would be used throughout drawings. Yes it needs to be updated if assemblies / parts change (because it's a static value) but I have to re-run the code anyway. This way I never get the N/A anymore. Do you need assistance with using some iLogic?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2023 11:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12138235#M294194</guid>
      <dc:creator>emanuel.c</dc:creator>
      <dc:date>2023-07-31T11:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12138637#M294195</link>
      <description>&lt;P&gt;We wound up going the same route years ago.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Small ilogic routine that publishes the weight to a parameter and drawings refer to that and stick it in the triggers under 'before save'. Never had the N/A problem on a drawing since.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jul 2023 14:24:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12138637#M294195</guid>
      <dc:creator>mslosar</dc:creator>
      <dc:date>2023-07-31T14:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12142219#M294196</link>
      <description>&lt;P&gt;Hi! The behavior captured in the images does not look right to me. If possible, please share the files with me directly &lt;A href="mailto:johnson.shiue@autodesk.com" target="_blank"&gt;johnson.shiue@autodesk.com&lt;/A&gt;. I would like to understand the behavior better.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 19:48:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12142219#M294196</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2023-08-01T19:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Doesnt always update Mass on drawing</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12143310#M294197</link>
      <description>Hi Johnson, thanks for the followup. Somewhat sheepishly, I must admit that I did not have the " Update physical properties on save" setting enabled (I think I disabled it in an attempt to stop Vault asking me to check out every single file opened).&lt;BR /&gt;&lt;BR /&gt;So, yes, the mass updates on save, but when working on drawings it still requires switching to the part and saving, which is much the same as clicking "Update Mass".&lt;BR /&gt;&lt;BR /&gt;Emanuel &amp;amp; mslosar, thanks for your comments. Sounds like iLogic is the way to go for this problem - if I get stuck I'll reach out for some help!&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Wed, 02 Aug 2023 07:37:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/doesnt-always-update-mass-on-drawing/m-p/12143310#M294197</guid>
      <dc:creator>mark_francis</dc:creator>
      <dc:date>2023-08-02T07:37:08Z</dc:date>
    </item>
  </channel>
</rss>

