Consider the following (bear in mind I have seen none of your code so I'm making some assumptions):
1. All the combinations with the files they are supposed to open in sheet1.
Column A |
Column B |
041/4KnitRIO50 |
D:\My Documents\Doc1.doc |
041/4KnitRIO100 |
D:\My Documents\Doc2.doc |
041/4KnitRIONonstandard |
D:\My Documents\Doc3.doc |
2. In the Form
Sub aButton_Click()
Dim strSearch As String
strSearch = Size.Value & Subs.Value & Color.Value & feet.Value
MsgBox (Sheets("Sheet1").Columns(1).Find(strSearch).Offset(, 1).Value)
End Sub
Does this help?
Bookmarks