A Way to edit an inventory list through a macro in a different workbook?

whahmira

New Member
Joined
Aug 23, 2018
Messages
9
Hello! Right now I have an inventory list that has a macro in it where you can manually add parts onto a reserve so that other people will not use them.
Basically you just type in the quantity and the part number and it will look up the part number within the inventory and add whatever quantity was specified to the 'On Reserve' cell in that row.

What I am trying to do is change that process so it happens automatically. I have a work order template with a button "Book". When that button is clicked, I would like the macro to find the list of part numbers and their quantities on the work order and then open up the inventory list and find each of the part numbers and then change their On Reserve amount.

This is what I have:
Code:
[LEFT][COLOR=#333333][FONT=Verdana][COLOR=#333333][FONT=monospace]Sub Inventory()
Sheets("Overview").Activate
Dim PartNo(100) As String
Dim Quantity(100) As Integer
Dim iRow As Integer
   iRow = 27 'start one row early or it will skip the first row of the order
   Do Until IsEmpty(Cells(iRow, 1))
   iRow = iRow + 1
   PartNo(iRow) = Cells(iRow, 1).Value
   Quantity(iRow) = Cells(iRow, 4).Value  
   Loop
maxRow = iRow
iRow = 28
Workbooks.Open Filename:="link to inventory"

If Quantity(iRow) = 0 Then
MsgBox "Please check quantities"
Else: Sheets("Database").Select
Set zelle = Cells.Find(What:=PartNo(iRow), After:= _
 ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, _
 SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False)
 'MsgBox zelle.Address
 zelle.Select
Sales2018 = Cells(zelle.Row, 20).Value
OnReserve = Cells(zelle.Row, 5).Value
Cells(zelle.Row, 5).Value = OnReserve + Quantity
Cells(zelle.Row, 20).Value = Sales2018 + Quantity
MsgBox PartNo & "was booked successfully"
End If
   
ActiveWorkbook.Save
ActiveWindow.Close
    
End Sub

[/FONT][/COLOR][/FONT][/COLOR][/LEFT]

When I run that it says "type mismatch" referring to the addition symbol in:
Code:
[LEFT][COLOR=#333333][FONT=monospace]Cells(zelle.Row, 5).Value = OnReserve + Quantity[/FONT][/COLOR][/LEFT]


This post is cross-referenced with the post below, which contains the workbooks as well for reference.
https://www.excelforum.com/excel-pr...-through-a-macro-in-a-different-workbook.html

Any help would be greatly appreciated :)
 
Last edited:

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Now the code is at this point:
Code:
[LEFT][COLOR=#333333][FONT=monospace]Sub Inventory()

Sheets("Order Form").Activate
Dim PartNo(100) As String
Dim Quantity(100) As Integer

Dim iRow As Integer
   iRow = 8 
   Do Until IsEmpty(Cells(iRow, 1))
   iRow = iRow + 1
   PartNo(iRow) = Cells(iRow, 1).Value
   Quantity(iRow) = Cells(iRow, 4).Value
   Loop
maxRow = iRow
iRow = 9

Workbooks.Open Filename:="C:\Users\Z645352\Desktop\Test1\WorkbookB.xlsm"

Sheets("Database").Select
Set zelle = Cells.Find(What:=PartNo(iRow), After:= _
 ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, _
 SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False)
 zelle.Select
Sales2018 = Cells(zelle.Row, 5).Value
OnReserve = Cells(zelle.Row, 4).Value

Dim nRow As Integer
    nRow = 3
    Do Until iRow = maxRow
If Quantity(iRow) > 0 Then
Cells(nRow, 4).Value = OnReserve + Quantity(iRow)
Cells(nRow, 5).Value = Sales2018 + Quantity(iRow)


     kRow = kRow + 1
End If
     iRow = iRow + 1

    Loop


ActiveWorkbook.Save
ActiveWindow.Close
    
End Sub[/FONT][/COLOR][/LEFT]
Like I said, the workbooks can be seen in the original post in the link to excel forum
the code will still not run!
 
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,363
Members
449,155
Latest member
ravioli44

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top