10-16-2017 10:12 AM - edited 10-16-2017 10:15 AM
Hello Everybody,
I would like to ask if is there a function which looks for exact value of an array. I have been working with the function Filter, which you can see in the next statement to compare a name of a channel with the ones of an array called "ChannelsToKeep":
If UBound(Filter(ChannelsToKeep, ChnName(i)))=-1 Then
But For example if my array contains the values ("mally", "kate", "becks") and I look for "ally" then it will match with "mally", but I don't wish that.
Any suggestion is welcome.
Thank you very much
10-17-2017 03:46 AM
I realized that the method StrComp is the most appropriate for check strict match between two texts. So it will be very useful for someone who needs that in the future.