The code below reads across row 10 starting with column A. I would like to read to read Col B and find the "Part Number" and then insert the data from the row the "Part Number" is in. The input textbox is on a multipage form, UserFomr1. The textboxes to place data into are also on UserForm1. I have a pic of the form but I am not sure if there is a way to post it.
I believe I need a step before this to enter the part number, then lookup to find the number to identify the row the data should come from.
Yes, I am new to VBA. So any suggestions are appreciated.
John
Private Sub OptionCodeBox_Change()
Worksheets("Master Tracking"

.Range("A10"

.Value = UserForm1.OptionCodeBox
UserForm1.OptionCode.Value = Worksheets("Master Tracking"

.Range("A10"

.Value
End Sub
Private Sub PartNumberBox_Change()
Worksheets("Master Tracking"

.Range("B10"

.Value = UserForm1.PartNumberBox
UserForm1.PartNumber.Value = Worksheets("Master Tracking"

.Range("B10"

.Value
End Sub
Private Sub LetterStateBox_Change()
Worksheets("Master Tracking"

.Range("C10"

.Value = UserForm1.LetterStateBox
UserForm1.LetterState.Value = Worksheets("Master Tracking"

.Range("C10"

.Value
End Sub
Private Sub PartDescriptionBox_Change()
Worksheets("Master Tracking"

.Range("D10"

.Value = UserForm1.PartDescriptionBox
UserForm1.PartDescription.Value = Worksheets("Master Tracking"

.Range("D10"

.Value
End Sub