Hobbesofmi,
Insert this User Defined Function (UDF) code in a standard module:
Function Nth_Occurrence(range_look As Range, find_it As String, occurrence As Long, offset_row As Long, offset_col As Long)
Dim lCount As Long
Dim rFound As Range
Set rFound = range_look.Cells(1, 1)
For lCount = 1 To occurrence
Set rFound = range_look.Find(find_it, rFound, xlValues, xlWhole)
Next lCount
Nth_Occurrence = rFound.Offset(offset_row, offset_col)
End Function
This function is provided on the OzGrid Website
In order to accomplish this:
1. Hit Alt + F11
2.On the Menu Go To Insert > Module
3. In the Project Explorer you will now see an icon named Module 1. Double Click It.
4. Paste the above code on the white screen
Worksheet Formulas for Sheet2:
Cell Formula
B7 =Nth_Occurrence(Sheet3!B8:B28,Sheet2!G1,1,0,1)
B8 =Nth_Occurrence(Sheet3!B8:B28,Sheet2!I1,1,0,1)
B15 =Nth_Occurrence(Sheet3!B8:B28,Sheet2!G1,2,0,1)
B16 =Nth_Occurrence(Sheet3!B8:B28,Sheet2!I1,2,0,1)
The Answer is clearer on this link: CLICK HERE
Bookmarks