Good Morning Everyone,
I still have not been able to resolve a compile error that states the "Variable has not been Defined". Basically, I am searching for the Part Number on My form on sheet 7 in columns B2:B50000. I've tried rewriting this every way imaginable, with no success in resolving this error. I am new to the world of code and could use some help to solve this problem.
Below is the code I am using to Find the Record by Part Number on my form, allowing some edits and then updating the editable columns back to the Worksheet. I have also attached a copy of the project as well. The form and Code exist on a form called Find Part (frmFindPart)
Private Sub cmdAddtoTicket_Click()
'Find Part Number on Sheet7 (Part Table) in Cell Range ("B2:B50000")
Set findvalue = Sheet7.Range("B2:B50000").Find(What:=Me.txtpartnumber, LookIn:=xlValues)
'findvalue.Value = Me.txtPartNumber "Allow Edits to be Updated to the Record"
findvalue.Offset(0, -1).Value = Me.txtquantityneeded.Value
findvalue.Offset(0, 5).Value = Me.txtPkgQty.Value
findvalue.Offset(0, 6).Value = Me.txtPkgCost.Value
findvalue.Offset(0, 7).Value = Me.TxtCostEach.Value
findvalue.Offset(0, 8).Value = Me.txtMultiplier.Value
findvalue.Offset(0, 9).Value = Me.txtSellEach.Value
Call MsgBox("The Part has been Updated", vbInformation, "Edit Part")
'reset error
On Error GoTo 0
Exit Sub
Unload Me
frmfindpart.Show
End Sub
Here is my File that I am working on: Perfect Degree Service Ticket TestV5.xlsm
I appreciate any help I can get.
Thanks Much and Have a Great day!
Larrry
Bookmarks