Autodesk Inventor Customization
Reply
Topic Options
- Start Article
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Parte List Columns
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
121 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!!!
Re: Parte List Columns
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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

