<?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: Getting m^3 to show up as Volume units in form. in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6508402#M312331</link>
    <description>&lt;P&gt;Hi Mrs.Norton,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was rounding in the "contents" file , so that the value comes into the assembly (and therefore the form) already rounded. Will that work, or do you need to do the rounding at the assembly level?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This rounds to &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt; places:&lt;/P&gt;
&lt;P&gt;Volume = &lt;STRONG&gt;Round( &lt;/STRONG&gt;V1 * 0.000001&lt;STRONG&gt;,&lt;FONT color="#0000ff"&gt; 2&lt;/FONT&gt;)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Aug 2016 15:03:19 GMT</pubDate>
    <dc:creator>Curtis_W</dc:creator>
    <dc:date>2016-08-18T15:03:19Z</dc:date>
    <item>
      <title>Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6503898#M312324</link>
      <description>&lt;P&gt;First time posting a question here, so please bear with me and I'm sorry if I didn't post in the right place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Tank assembly...in which, I have two parts that represent the water levels (one at max fullness, one up to the overflow).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code that drives the Volume portions of my Form.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the Volume to show up in m^3 and I have no idea how to do it, as m^3 isn't a choice in my parameter units. In iProperties, the volume of both water parts shows correctly, with the m^3 as the units.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is...how do I get the&amp;nbsp;Volume and the Gross Volume to show up in my form the way it is showing in my iProperties tab (with m^3 as the units)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;Parameter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Skeleton - MASTER:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;InletWaterLevel&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;TopsidePipeDisFromTop&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;Flange_Gap&lt;/SPAN&gt;

    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Suppress Water, If Not Needed&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Water&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Add Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Component&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;
    
&lt;SPAN&gt;ElseIf&lt;/SPAN&gt; &lt;SPAN&gt;Water&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Remove Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Component&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;False&lt;/SPAN&gt; 
    
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;


&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;Water&lt;/SPAN&gt;
    &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Add Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;
    &lt;SPAN&gt;formAddRemoveWater&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
    
    &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Remove Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;
    &lt;SPAN&gt;formAddRemoveWater&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&lt;/SPAN&gt;

&lt;SPAN&gt;VolumeOfWater&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;VolumeOfComponent&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;


&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/SPAN&gt;



    &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Suppress Gross Water, If Not Needed&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;GrossWater&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Add Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Component&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Gross Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;
    
&lt;SPAN&gt;ElseIf&lt;/SPAN&gt; &lt;SPAN&gt;GrossWater&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Remove Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Component&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Gross Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;False&lt;/SPAN&gt; 
    
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;


&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;GrossWater&lt;/SPAN&gt;
    &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Add Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;
    &lt;SPAN&gt;formGrossVolumeOfWater&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
    
    &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Remove Water&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;
    &lt;SPAN&gt;formGrossVolumeOfWater&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&lt;/SPAN&gt;

&lt;SPAN&gt;GrossVolumeOfWater&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;VolumeOfComponent&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Gross Volume of Water:1&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 481px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/264163i4D9FB6BBE84A88C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Inventor 2017...and I am very new to Inventor and iLogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also would like to have "Update" buttons next to the volumes that would update the volumes and that would unsuppress&amp;nbsp;the correct water part too (instead of the add/remove water buttons)....but I am afraid that might be over my head at the moment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;Maggie&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2016 19:37:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6503898#M312324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-16T19:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6504095#M312325</link>
      <description>&lt;P&gt;Hi mnorton4BH7P,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"m^3 isn't a choice in my parameter units"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can just type in &lt;STRONG&gt;m^3&lt;/STRONG&gt;&amp;nbsp;for the units (not sure why it's not listed).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the rest of this, I'm not sure I followed how you have it set up, but I've done it more like the attached in the past. And have just driven this model from the assembly with a form. In the attached the form is in the part just for simplicity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post back if it's not clear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2016 21:25:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6504095#M312325</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-08-16T21:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6505776#M312326</link>
      <description>&lt;P&gt;Typing in m^3 in the parameters worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't realize that I didn't have to "choose" the units and they could be typed in but I don't understand why m^3 isn't IN the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked at your model's rules and I really don't know what exactly I'm looking at. Like I said, I am just learning iLogic...so I really only know what I have had to make it do for my application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way for me to attach my assembly here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would also like to round my Volumes to two decimal places and have a way to update the numbers when my water level changes via overflow height change, without having to suppress and unsupress the Water "parts".&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 15:44:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6505776#M312326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-17T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6505851#M312327</link>
      <description>&lt;P&gt;Hi Mrs.Norton,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To attach an assembly, use pack and go to round up all of the parts, and then place them in a zip file and attach that file here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My file was set up with 2 named solid bodies, created by splitting a revolved part with a work plane. The parameter called Fill, is the parameter that sets the work plane offset. The form drives this parameter, and therefore adjusts the split location of the two solid bodies. The iLogic rule gets the volume of these named solid bodies, and multiplies them by the relative error percentage, then converts them from cubic cm to cubic m, and rounds them to 2 places. And finally it sums the 3 volumes to give the total volume as a user parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I commented the code a bit better and included it below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&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="Volume iLogic.JPG" style="width: 555px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/264472i6160EED6DA3F52DB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Volume iLogic.JPG" alt="Volume iLogic.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'triggers make rule run automatically
'when parameter is changed
oTrigger = Dia
oTrigger = Dia2
oTrigger = Fill

Dim partDoc As PartDocument = ThisDoc.Document
Dim oSurfBodies As ObjectCollection

'Relative Error percentage
Dim RelErr As Double
RelErr = 0.641322 

'look at each solid body
For Each sb As SurfaceBody In partDoc.ComponentDefinition.SurfaceBodies
	'find body by name
	If sb.Name = "Liquid" Then 
		'get volume times relative error percent
		V1 = sb.Volume(RelErr) 
		'round and multiple by conversion factor 
		'0.000001 for cm^3 To m^3
		Volume = Round(V1 * 0.000001,2) 
		'find body by name
	ElseIf sb.Name = "Air" Then 
		'get volume times relative error percent
		V2 = sb.Volume(RelErr) 
		'round and multiple by conversion factor 
		'0.000001 for cm^3 To m^3
		Volume2 = Round(V2 * 0.000001,2) 
	End If
Next

'sum volumes of both bodies
'write to user parameter TotalVolume
TotalVolume = Volume + Volume2&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Aug 2016 16:05:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6505851#M312327</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-08-17T16:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6506094#M312328</link>
      <description>&lt;P&gt;Here is my file...not sure if you will be able to open it or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please don't mind the way I have the flanges linked in the rule, as I didn't know how to get them to change sizes &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 17:26:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6506094#M312328</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-17T17:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6506422#M312329</link>
      <description>&lt;P&gt;Hi Mrs.Norton,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The zip file did not contain the part and assembly files, but I think I have a fair idea of what you're after.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is a really simple assembly that has a vessel, an overflow, and a contents file. It's likely not exactly how you want it to work, but should give you some ideas how to proceed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The Contents file is the master or skeleton file that drives the other files, they were derived from it. This file contains the previous illogic code I posted.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The Assembly has parameters that either push or pull values to/from the contents file. It does this via an iLogic rule in it, that triggers the rule in the contents part file.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The overflow level is controlled in the contents file by a work plane, and derived into the overflow part model.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 19:37:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6506422#M312329</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-08-17T19:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6508275#M312330</link>
      <description>&lt;P&gt;Thanks so much! That really helped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only issue I am having now is how to round the volume to two decimal places.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I edited it in the Parameter using "Custom Property Format" but it isn't showing rounded in either my parameter list or in my form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 14:29:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6508275#M312330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-18T14:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting m^3 to show up as Volume units in form.</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6508402#M312331</link>
      <description>&lt;P&gt;Hi Mrs.Norton,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was rounding in the "contents" file , so that the value comes into the assembly (and therefore the form) already rounded. Will that work, or do you need to do the rounding at the assembly level?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This rounds to &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt; places:&lt;/P&gt;
&lt;P&gt;Volume = &lt;STRONG&gt;Round( &lt;/STRONG&gt;V1 * 0.000001&lt;STRONG&gt;,&lt;FONT color="#0000ff"&gt; 2&lt;/FONT&gt;)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 15:03:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/getting-m-3-to-show-up-as-volume-units-in-form/m-p/6508402#M312331</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-08-18T15:03:19Z</dc:date>
    </item>
  </channel>
</rss>

