Hi,
Problem solved, I had to Add a Code, few more formulas, But at the end I got
what i need.
This is what i did :
1-.I modified a Get Match Code that i have,
2-.Starting Cell E12, i Added the Getmatch Function that work with the code
3-.Starting Cell D12, I Added a LEN Function (to count how many numbers match Between Cell Z8 and G12 )
and
4-.then on Column D12, I Added The Excel Filter to Accept/Reject if 2 (3 or more) Numbers matched
Here the Code :
Function GetMatch(LookFor As String, LookIn As String) As String
Dim s, i As Long, h As String
s = Split(LookFor, "-")
For i = LBound(s) To UBound(s)
If InStr(LookIn, s(i)) > 0 Then
h = h & s(i) & "-"
End If
Next i
If Right(h, 1) = "-" Then h = Left(h, Len(h) - 1)
GetMatch = h
End Function
Getmatch Formula
LEN Fomula
And finally, Added the excel Filter located Tab DATA->Sort and Filter.
That's it.
Well, talk to you later or tomorrow, please everyone have wonderful evening 
Thank you so much.
Best Regards From Miami
David.
Bookmarks