Results 1 to 7 of 7

Editing BOM automatically

Threaded View

  1. #3
    Registered User
    Join Date
    11-15-2011
    Location
    USA
    MS-Off Ver
    Excel 2003
    Posts
    17

    Question Re: Editing BOM automatically

    Thanks,

    Please take a look at the original spread sheet that Inventor spits out, I`m using macros (Ctrl+shift+F) to change it a little bit. Then if you run the macro below it will add 2 rows between materials...
    My question is how to add WEIGHT: in F column and sum weight in G column???

    Sub detect_mat()
    Dim last As Long
    Dim x As Long
    last = Cells(Rows.Count, "e").End(xlUp).Row
    For x = 3 To last * 4 Step 1
    If Cells(x, 5).Value <> Cells(x + 1, 5).Value Then
    Rows(x + 1).Select
        Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
        Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
        x = x + 2
        'HOW TO ADD WEIGHT?
        'HOW TO ADD SUM WEIGHT?
    End If
    Next
    End Sub
    Attached Files Attached Files
    Last edited by achmidt; 11-16-2011 at 03:26 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1