• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Autodesk Inventor Customization

    Reply
    Distinguished Contributor
    Posts: 1,101
    Registered: ‎09-22-2005

    Parte List Columns

    122 Views, 1 Replies
    04-19-2011 09:06 AM

    I've got a small macro to extract the data from 4 columns into an excel spreadsheet.

    It works fine, but the columns required are hard coded into the macro.

     

    I'd like to be able to scan across the columns for it's title and identify the required columns (item, part no, description, no off), particularly as I now find we use two parts list formats!!!

    Please use plain text.
    Distinguished Contributor
    Posts: 1,101
    Registered: ‎09-22-2005

    Re: Parte List Columns

    04-21-2011 08:51 AM in reply to: petercharles

    Based on the old methods of trial and error ---

     

     

    Dim oColumns As PartsListColumns
    Set oColumns = oPartsList.PartsListColumns
    Debug.Print oColumns.Count
    
    Dim oColNo As Integer
    
    For oColNo = 1 To oColumns.Count
    
    Dim oColumn As PartsListColumn
    Set oColumn = oPartsList.PartsListColumns.Item(oColNo)
    Debug.Print oColumn.Title
    
    Next

     

     

    Please use plain text.