• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor

    Reply
    Distinguished Contributor
    Posts: 425
    Registered: ‎08-22-2006

    Part Area in Parts List

    107 Views, 3 Replies
    04-12-2012 11:28 AM

    Does anyone know if you can display Part Area in a Collumn in a Parts List on an idw?

     

    Thanks

     

    P

    Please use plain text.
    *Expert Elite*
    Posts: 855
    Registered: ‎02-16-2006

    Re: Part Area in Parts List

    04-12-2012 11:38 AM in reply to: Raider_007

    If it's simple length x width just create a parameter and export to custom iproperty.

    You may possibly be able to extract the sheet metal area.

    But I'm not sure about the total surface area directly.

    This may be possible through ilogic or vba.

    Please use plain text.
    Distinguished Contributor
    Posts: 425
    Registered: ‎08-22-2006

    Re: Part Area in Parts List

    04-12-2012 11:49 AM in reply to: harco

    Yes thanks thats what I thought but just wanted to check.

     

    I can get it if its sheet metal part yes but not all the parts are sheet metal.

     

    Thanks.

    Please use plain text.
    Contributor
    Scotty87
    Posts: 13
    Registered: ‎02-16-2012

    Re: Part Area in Parts List

    04-12-2012 05:28 PM in reply to: Raider_007

    Try the following: (In this case, the data displayed in the parts list is m²; playing around with the units will allow you to get the unit of measurement you want.)

     

    Create a new user parameter called "Area", set units to m.

     

    Create an iLogic rule, copy and paste the following:

    iProperties.Value("Custom", "FlatExtentsArea")=SheetMetal.FlatExtentsArea
    Area=SheetMetal.FlatExtentsArea/1000
    iLogicVb.UpdateWhenDone=True

     

    In Document Settings, set linear dim precision to 2.12 (Units tab), then set the base qty to Area (BOM tab).

     

    The unit of measurement displayed in the parts list will be m (as opposed to m²), however the value will give you the area in m².

     

    Hope this helps!

    Please use plain text.