Loop or Find
Is it better to "loop" through a column of data to match a name entered in an input box or would it be better to use "find". Are there any pitfalls with find?
Thanks
Use Loop or Find to Search Column
Using a Loop to look through a column is better and much more accurate.
Find searches the whole table for the value.
The pitfall of Find is that if you are searching for multiple values, you would still have to use some sort of loop as the system only finds one item at a time.