Try replacing your current code with this:
Private Sub UserForm_Initialize()
Dim FindCell As Range
With Worksheets("IngredientLists")
Set FindCell = .Range("B1", .Range("B1").End(xlDown)). _
Find(what:=ActiveCell.Offset(0, -6).Value, LookIn:=xlValues, Lookat:=xlWhole)
End With
If Not FindCell Is Nothing Then
Me.txt_PurUnitMz.SetFocus
Me.txt_PurUnitMz.Value = FindCell.Offset(0, 1)
Me.txt_PurUnitWT.Value = FindCell.Offset(0, 8)
Me.txt_PurUnitCost.Value = FindCell.Offset(0, 9)
Me.txt_ConvOrg.Value = FindCell.Offset(0, 11)
Me.lbl_LastUpdate = FindCell.Offset(0, 10)
End If
End Sub
Bookmarks