Hey Pals,
I was trying very hard to compare 2 numbers when one is not in any sequence.
EG: First number: 1233
Second Number: 3321
In this case above, i want it to match because they both contains same numbers, just that it is not in sequence.
I have tried this code but it doesn't seem to work.
Dim n1 = "1233"
If n1.Contains("1332") Then
'Do Something
End if
Thanks a million times!