Inventor - How to Map the Mass from Inventor to Vault

Поделиться
HTML-код
  • Опубликовано: 17 сен 2024
  • In the video, Pete answers a question recently posed by a customer on how to link some of the physical iProperties to Vault Properties for BOM purposes. Since the files cannot currently be linked in an out-of-the-box fashion, Pete will demonstrate a technique utilizing some iLogic, a custom iProperty and setting up a mapped property in Vault.
    #PeteInventorTips
    For more information about this and other topics, check out our website www.TeamD3.com

Комментарии • 2

  • @Arthorius91
    @Arthorius91 Год назад +2

    Hi! Nice video, very usefull! I have a question about how to round the measurement of the mass obtained and be able to have only 3 decimal places, for example. All the best!

    • @petestrycharske7773
      @petestrycharske7773 Год назад

      Hey Arturo! You can get a rounded value by using the following line of code:
      iProperties.Value("Custom", "Vault_Mass") = Round(iProperties.Mass, 3) & " lbs"
      You can use Round(do, 4) if you wanted 4 decimal places, for example. Hope this helps and have a most blessed day!